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

/osnet-11/usr/src/lib/fm/libldom/sparc/
H A Dldom_utils.c38 notify_setup(int *notify_pipe) argument
40 if (pipe(notify_pipe) < 0) {
43 (void) fcntl(notify_pipe[1], F_SETFL, O_NONBLOCK);
H A Dldmsvcs_utils.c106 int notify_pipe[2]; member in struct:poller_s
433 (void) write(pollbase.notify_pipe[0], "1", 1);
489 pipe_fd->fd = pollbase.notify_pipe[1]; /* notification pipe */
536 (void) notify_setup(pollbase.notify_pipe);
/osnet-11/usr/src/lib/auditd_plugins/remote/
H A Daudit_remote.c95 extern int notify_pipe[2];
584 create_notify_pipe(int *notify_pipe, char **error) argument
587 if (pipe(notify_pipe) < 0) {
593 DPRINT((dfile, "Pipe created in:%d out:%d\n", notify_pipe[0],
594 notify_pipe[1]));
596 if (!set_fdfl(notify_pipe[0], O_NONBLOCK, FL_UNSET) ||
597 !set_fdfl(notify_pipe[1], O_NONBLOCK, FL_SET)) {
600 (void) close(notify_pipe[0]);
601 (void) close(notify_pipe[1]);
884 if (create_notify_pipe(notify_pipe, erro
[all...]
H A Dtransport.c88 int notify_pipe[2]; /* notif. pipe - receiving thread */ variable
968 * notification pipe - notify_pipe[1]. There might be up to two file
969 * descriptors (struct pollfd) in the vector - notify_pipe[1] which
974 pipe_fd->fd = notify_pipe[1];
982 * notify_pipe[1].
1240 int pipe_in = notify_pipe[0];
1268 int pipe_in = notify_pipe[0];
1413 (void) close(notify_pipe[0]);
1414 (void) close(notify_pipe[1]);

Completed in 34 milliseconds