/* * Copyright (c) 2002-2003, Intel Corporation. All rights reserved. * Created by: salwan.searty 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 that the sigtimedwait() function shall return the selected signal number upon success. Steps: 1. Register signal SIGTOTEST with the handler myhandler 2. Block SIGTOTEST from the process 3. Raise the signal, causing it to be pending 4. Call sigtimedwait() and verify that it returns the signal SIGTOTEST. */ #define _XOPEN_SOURCE 600 #define _XOPEN_REALTIME 1 #define SIGTOTEST SIGUSR1 #include #include #include #include #include #include "posixtest.h" void myhandler (int signo) { printf("Inside handler\n"); } int main() { struct sigaction act; sigset_t pendingset, selectset; struct timespec ts; act.sa_flags=0; act.sa_handler=myhandler; ts.tv_sec=0; ts.tv_nsec=0; sigemptyset(&pendingset); sigemptyset(&selectset); sigaddset(&selectset, SIGTOTEST); sigemptyset(&act.sa_mask); sigaction(SIGTOTEST, &act, 0); sighold(SIGTOTEST); raise(SIGTOTEST); sigpending(&pendingset); if (sigismember(&pendingset, SIGTOTEST) != 1) { perror("SIGTOTEST is not pending\n"); return PTS_UNRESOLVED; } if (sigtimedwait(&selectset, NULL, &ts) != SIGTOTEST) { perror("Call to sigtimedwait() failed\n"); return PTS_FAIL; } printf("Test PASSED\n"); return PTS_PASS; }