allwinner_a64/android/external/valgrind/none/tests/solaris/context_null.c
2018-08-08 16:14:42 +08:00

15 lines
266 B
C

/* Test that setting NULL context causes the thread to exit. */
#include <assert.h>
#include <sys/syscall.h>
#include <ucontext.h>
int main(void)
{
syscall(SYS_context, SETCONTEXT, NULL);
/* This code should not be reached. */
assert(0);
return 0;
}