ppc64: Arguments to iselInt128Expr_to_32x4 should be initialized.
[valgrind.git] / memcheck / tests / solaris / scalar_lwp_sigqueue.c
blob26a29af59745d0c9519ae88c433941bf3d7933dd
1 /* Test for lwp_sigqueue syscall which is available since
2 Solaris 11.2.
3 */
5 #include "scalar.h"
7 int main(void)
9 /* Uninitialised, but we know px[0] is 0x0. */
10 long *px = malloc(sizeof(long));
11 x0 = px[0];
13 /* SYS_lwp_sigqueue 163 */
14 GO(SYS_lwp_sigqueue, "5s 1m");
15 SY(SYS_lwp_sigqueue, x0 - 1, x0, x0 + 1, x0, x0 - 1); FAIL;
17 return 0;