Lines Matching defs:sev
19 const struct sigevent *sev;
28 void (*func)(union sigval) = args->sev->sigev_notify_function;
29 union sigval val = args->sev->sigev_value;
51 int mq_notify(mqd_t mqd, const struct sigevent *sev)
54 if (!sev || sev->sigev_notify != SIGEV_THREAD) {
55 return syscall(SYS_mq_notify, mqd, sev);
61 struct args args = { .sev = sev };
68 if (!sev || sev->sigev_notify != SIGEV_THREAD)
69 return syscall(SYS_mq_notify, mqd, sev);
76 if (sev->sigev_notify_attributes) attr = *sev->sigev_notify_attributes;