Lines Matching defs:sev
9 struct sigevent *sev;
41 static void notify_signal(struct sigevent *sev)
44 .si_signo = sev->sigev_signo,
45 .si_value = sev->sigev_value,
56 struct sigevent *sev = st->sev;
59 switch (sev->sigev_notify) {
61 notify_signal(sev);
64 sev->sigev_notify_function(sev->sigev_value);
70 int lio_listio(int mode, struct aiocb *restrict const *restrict cbs, int cnt, struct sigevent *restrict sev)
81 if (mode == LIO_WAIT || (sev && sev->sigev_notify != SIGEV_NONE)) {
87 st->sev = sev;
121 if (sev->sigev_notify == SIGEV_THREAD) {
122 if (sev->sigev_notify_attributes)
123 a = *sev->sigev_notify_attributes;