Searched refs:action (Results 126 - 134 of 134) sorted by last modified time

123456

/haiku/src/tests/system/kernel/
H A Dsyscall_restart_test.cpp175 struct sigaction action; local
177 action.sa_handler = SIG_IGN;
179 action.sa_handler = (void (*)(int))_SignalHandler;
181 action.sa_flags = RunMode() == RUN_HANDLE_SIGNAL_RESTART
184 sigemptyset(&action.sa_mask);
185 action.sa_userdata = this;
187 sigaction(SIGINT, &action, NULL);
/haiku/src/libs/bsd/
H A Ddaemon.c16 restore_old_sighup(int result, struct sigaction *action) argument
19 sigaction(SIGHUP, action, NULL);
26 struct sigaction oldAction, action; local
32 sigemptyset(&action.sa_mask);
33 action.sa_handler = SIG_IGN;
34 action.sa_flags = 0;
35 oldActionResult = sigaction(SIGHUP, &action, &oldAction);
/haiku/src/bin/pcmcia-cs/
H A Dcardctl.c460 A utility function to scan /var/run/stab and apply a specified action
508 static int execute(stab_t *s, char *action, char *scheme) argument
518 sprintf(cmd, "./%s %s %s %s", s->class, action, s->dev, scheme);
520 sprintf(cmd, "./%s %s %s", s->class, action, s->dev);
/haiku/src/apps/deskbar/
H A DShowHideMenuItem.h49 uint32 action);
51 static status_t TeamShowHideCommon(int32 action,
/haiku/src/add-ons/kernel/generic/scsi_periph/
H A Dremovable.cpp125 switch (res.action) {
140 SHOW_FLOW( 3, "action: %x, error: %x", (int)res.action, (int)res.error_code);
/haiku/headers/cpp/
H A Dstl_config.h347 # define __STL_UNWIND(action) catch(...) { action; throw; }
354 # define __STL_UNWIND(action)
/haiku/headers/private/fs_shell/
H A Dfssh_byte_order.h116 fssh_size_t length, fssh_swap_action action);
/haiku/headers/private/kernel/arch/
H A Dthread.h31 status_t arch_setup_signal_frame(Thread *thread, struct sigaction *action,
/haiku/headers/private/libroot/
H A Dsignal_private.h64 int __sigaction(int signal, const struct sigaction* action,

Completed in 87 milliseconds

123456