/* * Copyright (c) 2002-2003, Intel Corporation. All rights reserved. * Created by: rusty.lynch REMOVE-THIS AT intel DOT com * This file is licensed under the GPL license. For the full content * of this license, see the COPYING file at the top level of this * source tree. Test case for assertion #5 of the sigaction system call that verifies setting the SA_INFO bit in the signal mask for SIGABRT will result in sa_sigaction identifying the signal-catching function. */ #define _XOPEN_SOURCE 600 #include #include #include #include #include #include "posixtest.h" int handler_called = 0; void handler(int signo, siginfo_t *info, void *context) { handler_called = 1; } int main() { struct sigaction act; act.sa_sigaction = handler; act.sa_flags = SA_SIGINFO; sigemptyset(&act.sa_mask); sigaddset(&act.sa_mask, SIGSTOP); if (sigaction(SIGABRT, &act, 0) == -1) { printf("Unexpected error while attempting to setup test " "pre-conditions\n"); return PTS_UNRESOLVED; } if (raise(SIGABRT) == -1) { printf("Unexpected error while attempting to setup test " "pre-conditions\n"); return PTS_UNRESOLVED; } if (handler_called) { printf("Test PASSED\n"); return PTS_PASS; } printf("Test FAILED\n"); return PTS_FAIL; }