• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2003, Intel Corporation. All rights reserved.
3  * Created by:  salwan.searty REMOVE-THIS AT intel DOT com
4  * This file is licensed under the GPL license.  For the full content
5  * of this license, see the COPYING file at the top level of this
6  * source tree.
7 
8  Simply, if sigignore returns a 0 here, test passes.
9 
10 */
11 
12 #define _XOPEN_SOURCE 600
13 
14 #include <stdio.h>
15 #include <signal.h>
16 #include "posixtest.h"
17 
main(void)18 int main(void)
19 {
20 	sigset_t set;
21 	sigaddset(&set, SIGABRT);
22 
23 	if (sigprocmask(SIG_SETMASK, &set, NULL) != 0) {
24 		perror("sigprocmask failed -- returned -- test aborted");
25 		return PTS_FAIL;
26 	}
27 	printf("Test PASSED\n");
28 	return PTS_PASS;
29 }
30