1 /* Test for utimensat() syscall which is available on newer Solaris. */
5 __attribute__((noinline
))
6 static void sys_utimensat(void)
8 GO(SYS_utimensat
, "4s 2m");
9 SY(SYS_utimensat
, x0
- 1, x0
+ 1, x0
+ 1, x0
); FAIL
;
12 __attribute__((noinline
))
13 static void sys_utimensat2(void)
15 GO(SYS_utimensat
, "4s 0m");
16 SY(SYS_utimensat
, x0
- 1, x0
+ NULL
, x0
+ NULL
, x0
); FAIL
;
21 /* Uninitialised, but we know px[0] is 0x0. */
22 long *px
= malloc(sizeof(long));
25 /* SYS_utimensat 110 */