Home
last modified time | relevance | path

Searched refs:sigev (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocknotify.c98 int sigev = 0; in so_notify_disconnecting() local
101 (void) i_so_notify_last_tx(so, &pollev, &sigev); in so_notify_disconnecting()
107 if (sigev != 0) in so_notify_disconnecting()
108 socket_sendsig(so, sigev); in so_notify_disconnecting()
127 int sigev = 0; in so_notify_disconnected() local
131 (void) i_so_notify_last_tx(so, &pollev, &sigev); in so_notify_disconnected()
132 (void) i_so_notify_last_rx(so, &pollev, &sigev); in so_notify_disconnected()
142 if (sigev != 0) in so_notify_disconnected()
143 socket_sendsig(so, sigev); in so_notify_disconnected()
293 int sigev = 0; in so_notify_eof() local
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Daio.c1194 struct sigevent *sigev) in alio() argument
1235 (sigev && copyin(sigev, &sigevk, sizeof (struct sigevent)))) { in alio()
1241 if (sigev && in alio()
1272 if (mode_arg == LIO_WAIT || sigev) { in alio()
1283 if (sigev && sigevk.sigev_notify == SIGEV_SIGNAL && in alio()
1308 port_init_event(pkevtp, (uintptr_t)sigev, in alio()
1551 void *sigev, in aliowait() argument
2051 struct sigevent *sigev; in aiorw() local
2070 sigev = &aiocb.aio_sigevent; in aiorw()
2083 sigev = (struct sigevent *)&aiocb64.aio_sigevent; in aiorw()
[all …]
H A Daio_subr.c192 sigqueue_t *sigev = NULL; in aio_done() local
335 sigev = reqp->aio_req_sigqp; in aio_done()
383 if (!sigev && !use_port && head == NULL && in aio_done()
406 if (sigev) in aio_done()
407 aio_sigev_send(p, sigev); in aio_done()
428 aio_sigev_send(proc_t *p, sigqueue_t *sigev) in aio_sigev_send() argument
430 ASSERT(sigev != NULL); in aio_sigev_send()
433 sigaddqa(p, NULL, sigev); in aio_sigev_send()
935 sigqueue_t *sigev, *lio_sigev = NULL; in aio_cleanup_notifyq() local
951 sigev = reqp->aio_req_sigqp; in aio_cleanup_notifyq()
[all …]
/illumos-gate/usr/src/test/os-tests/tests/signalfd/
H A Dbasic_read.c53 struct sigevent sigev = { in main() local
66 assert(timer_create(CLOCK_HIGHRES, &sigev, &tid) == 0); in main()
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/ilbd/
H A Dilbd_hc.c461 struct sigevent sigev; in ilbd_hc_timer_init() local
475 sigev.sigev_notify = SIGEV_PORT; in ilbd_hc_timer_init()
476 sigev.sigev_value.sival_ptr = &notify; in ilbd_hc_timer_init()
477 if (timer_create(CLOCK_REALTIME, &sigev, &ev_obj->timerid) == -1) { in ilbd_hc_timer_init()