Searched refs:sig (Results 1 - 25 of 42) sorted by relevance

12

/seL4-refos-master/libs/libmuslc/src/signal/
H A Dkill.c4 int kill(pid_t pid, int sig) argument
6 return syscall(SYS_kill, pid, sig);
H A Dsiginterrupt.c3 int siginterrupt(int sig, int flag) argument
7 sigaction(sig, 0, &sa);
11 return sigaction(sig, &sa, 0);
H A Dkillpg.c4 int killpg(pid_t pgid, int sig) argument
10 return kill(-pgid, sig);
H A Dsighold.c3 int sighold(int sig) argument
8 if (sigaddset(&mask, sig) < 0) return -1;
H A Dsigpause.c3 int sigpause(int sig) argument
7 sigdelset(&mask, sig);
H A Dsigrelse.c3 int sigrelse(int sig) argument
8 if (sigaddset(&mask, sig) < 0) return -1;
H A Dsigwait.c3 int sigwait(const sigset_t *restrict mask, int *restrict sig) argument
8 *sig = si.si_signo;
H A Dpsignal.c5 void psignal(int sig, const char *msg) argument
7 char *s = strsignal(sig);
H A Dsigignore.c3 int sigignore(int sig) argument
10 return sigaction(sig, &sa, 0);
H A Dsigismember.c3 int sigismember(const sigset_t *set, int sig) argument
5 unsigned s = sig-1;
H A Dsigaddset.c4 int sigaddset(sigset_t *set, int sig) argument
6 unsigned s = sig-1;
7 if (s >= _NSIG-1 || sig-32U < 3) {
H A Dsigdelset.c4 int sigdelset(sigset_t *set, int sig) argument
6 unsigned s = sig-1;
7 if (s >= _NSIG-1 || sig-32U < 3) {
H A Dsigset.c3 void (*sigset(int sig, void (*handler)(int)))(int) argument
9 if (sigaddset(&mask, sig) < 0)
13 if (sigaction(sig, 0, &sa_old) < 0)
21 if (sigaction(sig, &sa, &sa_old) < 0)
26 return sigismember(&mask_old, sig) ? SIG_HOLD : sa_old.sa_handler;
H A Draise.c6 int raise(int sig) argument
12 ret = syscall(SYS_tkill, tid, sig);
H A Dsigaction.c17 int __libc_sigaction(int sig, const struct sigaction *restrict sa, struct sigaction *restrict old) argument
22 a_or_l(handler_set+(sig-1)/(8*sizeof(long)),
23 1UL<<(sig-1)%(8*sizeof(long)));
44 if (syscall(SYS_rt_sigaction, sig, sa?&ksa:0, old?&ksa_old:0, sizeof ksa.mask))
54 int __sigaction(int sig, const struct sigaction *restrict sa, struct sigaction *restrict old) argument
56 if (sig-32U < 3 || sig-1U >= _NSIG-1) {
60 return __libc_sigaction(sig, sa, old);
H A Dsignal.c7 void (*signal(int sig, void (*func)(int)))(int) argument
10 if (__sigaction(sig, &sa, &sa_old) < 0)
H A Dsigqueue.c7 int sigqueue(pid_t pid, int sig, const union sigval value) argument
13 si.si_signo = sig;
19 r = syscall(SYS_rt_sigqueueinfo, pid, sig, &si);
/seL4-refos-master/libs/libmuslc/src/thread/
H A Dpthread_kill.c3 int pthread_kill(pthread_t t, int sig) argument
7 r = t->dead ? ESRCH : -__syscall(SYS_tkill, t->tid, sig);
H A Dpthread_cancel.c42 static void _sigaddset(sigset_t *set, int sig) argument
44 unsigned s = sig-1;
51 static void cancel_handler(int sig, siginfo_t *si, void *ctx) argument
/seL4-refos-master/libs/libplatsupport/src/plat/pc99/acpi/
H A Dwalker.h20 * Find the address of "sig" between the given addresses.
21 * sig_len provides the length of sig to allow a sig that
26 acpi_sig_search(acpi_t* acpi, const char* sig, int sig_len, void* start, void* end);
H A Dbrowser.c62 char sig[5]; local
63 sig[4] = '\0';
64 memcpy(sig, (char*)(*entry) + offset, 4);
66 printf("%c - %s table at %p\n", i + 'a', sig, vector[i]);
80 char sig[5]; local
81 sig[4] = '\0';
83 memcpy(sig, _e, 4);
85 printf("%c - %s table at %p\n", i + 'a', sig, vector[i]);
251 const char* sig = acpi_sig_str(r->type); local
253 printf("%c - %s at %p\n", key, sig,
[all...]
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/pc99/acpi/
H A Dwalker.h20 * Find the address of "sig" between the given addresses.
21 * sig_len provides the length of sig to allow a sig that
26 acpi_sig_search(acpi_t* acpi, const char* sig, int sig_len, void* start, void* end);
H A Dbrowser.c62 char sig[5]; local
63 sig[4] = '\0';
64 memcpy(sig, (char*)(*entry) + offset, 4);
66 printf("%c - %s table at %p\n", i + 'a', sig, vector[i]);
80 char sig[5]; local
81 sig[4] = '\0';
83 memcpy(sig, _e, 4);
85 printf("%c - %s table at %p\n", i + 'a', sig, vector[i]);
251 const char* sig = acpi_sig_str(r->type); local
253 printf("%c - %s at %p\n", key, sig,
[all...]
/seL4-refos-master/libs/libplatsupport/plat_include/pc99/platsupport/plat/acpi/tables/
H A Dfacs.h17 char sig[4]; member in struct:acpi_facs
/seL4-refos-master/projects/util_libs/libplatsupport/plat_include/pc99/platsupport/plat/acpi/tables/
H A Dfacs.h17 char sig[4]; member in struct:acpi_facs

Completed in 85 milliseconds

12