Searched defs:si_code (Results 1 - 7 of 7) sorted by relevance
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | sigqueue.c | 124 int si_code, int block) 131 /* The si_code value must indicate the signal will be queued */ 132 if (pid <= 0 || !sigwillqueue(sig, si_code)) 161 v.sicode = si_code; 200 int si_code, int block) 206 return (sigqueue(pid, sig, sv.sival_ptr, si_code, block)); 123 sigqueue(pid_t pid, int sig, void *value, int si_code, int block) argument 199 sigqueue32(pid_t pid, int sig, caddr32_t value, int si_code, int block) argument
|
/illumos-gate/usr/src/lib/libbc/libc/sys/common/ |
H A D | signalmap.h | 54 int si_code; /* code from above */ member in struct:siginfo
|
/illumos-gate/usr/src/lib/libproc/common/ |
H A D | Pcore_linux.h | 116 int32_t si_code; /* Extra code */ member in struct:lx_elf_siginfo
|
/illumos-gate/usr/src/lib/brand/solaris10/s10_brand/common/ |
H A D | s10_signal.c | 603 rval->sys_rval2 = wstat(info.si_code, info.si_status); 631 if (infop->si_signo == SIGCLD && infop->si_code != CLD_EXITED && 687 s10_sigqueue(sysret_t *rval, pid_t pid, int signo, void *value, int si_code) argument 693 pid, signo, value, si_code); 707 pid, nativesig, value, si_code, 0));
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | siginfo.h | 126 #define SI_FROMUSER(sip) ((sip)->si_code <= 0) 127 #define SI_FROMKERNEL(sip) ((sip)->si_code > 0) 244 int si_code; /* code from above */ member in struct:siginfo 318 int32_t si_code; /* code from above */ member in struct:siginfo32 383 int si_code; /* code from above */ member in struct:k_siginfo
|
/illumos-gate/usr/src/boot/sys/sys/ |
H A D | signal.h | 205 int si_code; /* signal code */ member in struct:__siginfo 238 /** si_code **/
|
/illumos-gate/usr/src/cmd/sgs/libconv/common/ |
H A D | corenote.c | 745 * Return a string describing the si_code field of 748 * The meaning of si_code is dependent on both the target 752 conv_cnote_si_code(Half mach, int sig, int si_code, argument 756 /* Values of si_code for user generated signals */ 887 /* Handle the si_code values that do not depend on the signal */ 888 switch (si_code) { 897 if (si_code <= 0) { 898 int ndx = -si_code; 901 * If no signal was delivered, and si_code is 904 if ((si_code [all...] |
Completed in 138 milliseconds