Searched refs:sev (Results 1 - 4 of 4) sorted by relevance

/seL4-camkes-master/projects/musllibc/src/aio/
H A Dlio_listio.c9 struct sigevent *sev; member in struct:lio_state
41 static void notify_signal(struct sigevent *sev) argument
44 .si_signo = sev->sigev_signo,
45 .si_value = sev->sigev_value,
56 struct sigevent *sev = st->sev; local
59 switch (sev->sigev_notify) {
61 notify_signal(sev);
64 sev->sigev_notify_function(sev
70 lio_listio(int mode, struct aiocb *restrict const *restrict cbs, int cnt, struct sigevent *restrict sev) argument
[all...]
H A Daio.c142 struct sigevent sev = cb->aio_sigevent; local
171 if (sev.sigev_notify == SIGEV_SIGNAL) {
173 .si_signo = sev.sigev_signo,
174 .si_value = sev.sigev_value,
181 if (sev.sigev_notify == SIGEV_THREAD) {
183 sev.sigev_notify_function(sev.sigev_value);
/seL4-camkes-master/projects/musllibc/src/mq/
H A Dmq_notify.c12 const struct sigevent *sev; member in struct:args
21 void (*func)(union sigval) = args->sev->sigev_notify_function;
22 union sigval val = args->sev->sigev_value;
32 int mq_notify(mqd_t mqd, const struct sigevent *sev) argument
34 struct args args = { .sev = sev };
41 if (!sev || sev->sigev_notify != SIGEV_THREAD)
42 return syscall(SYS_mq_notify, mqd, sev);
48 if (sev
[all...]
/seL4-camkes-master/projects/musllibc/src/time/
H A Dtimer_create.c14 struct sigevent *sev; member in struct:start_args
68 self->start = (void *(*)(void *))args->sev->sigev_notify_function;
69 self->start_arg = args->sev->sigev_value.sival_ptr;
114 args.sev = evp;

Completed in 92 milliseconds