Home | History | Annotate | Download | only in src

Lines Matching refs:action

64 	struct sigaction action;
67 sigaction(SDL_fatal_signals[i], NULL, &action);
68 if ( action.sa_handler == SIG_DFL ) {
69 action.sa_handler = SDL_Parachute;
70 sigaction(SDL_fatal_signals[i], &action, NULL);
75 sigaction(SIGALRM, NULL, &action);
76 if ( action.sa_handler == SIG_DFL ) {
77 action.sa_handler = SIG_IGN;
78 sigaction(SIGALRM, &action, NULL);
99 struct sigaction action;
102 sigaction(SDL_fatal_signals[i], NULL, &action);
103 if ( action.sa_handler == SDL_Parachute ) {
104 action.sa_handler = SIG_DFL;
105 sigaction(SDL_fatal_signals[i], &action, NULL);