Add missing zstd.h to coregrind Makefile.am noinst_HEADERS
[valgrind.git] / memcheck / tests / solaris / scalar_system_stats.c
blob193b6b61dcf1c29eb831d5900f3336edb1153e1e
1 /* Test for system_stats syscall which is available on newer Solaris. */
3 #include "scalar.h"
4 #include <sys/system_stats.h>
6 int main(void)
8 /* Uninitialised, but we know px[0] is 0x0. */
9 long *px = malloc(sizeof(long));
10 x0 = px[0];
12 /* SYS_system_stats 154 */
13 GO(SYS_system_stats, "1s 0m");
14 SY(SYS_system_stats, x0 + SYSTEM_STATS_START); SUCC;
16 return 0;