Lines Matching refs:action
38 These are those signals whose default action is to terminate the process
95 struct sigaction action;
97 if (sigaction (fatal_signals[i], NULL, &action) >= 0
98 && get_handler (&action) == SIG_IGN)
113 The 'action' field is accessed from within the fatal_signal_handler(),
117 volatile action_t action;
156 /* Get the last registered cleanup action, in a reentrant way. */
157 action_t action;
163 action = actions[n].action;
164 /* Execute the action. */
165 action ();
168 /* Now execute the signal's default action.
183 struct sigaction action;
185 action.sa_handler = &fatal_signal_handler;
189 action.sa_flags = SA_NODEFER;
190 sigemptyset (&action.sa_mask);
198 sigaction (sig, &action, &saved_sigactions[sig]);
206 at_fatal_signal (action_t action)
241 the new action has been written to the memory location
243 actions[actions_count].action = action;