Searched refs:FIFOCLOSE (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/fs/
H A Dfifonode.h116 #define FIFOCLOSE 0x0008 /* fifo is closing */ macro
/illumos-gate/usr/src/uts/common/fs/fifofs/
H A Dfifosubr.c619 if ((fnp->fn_flag & (FIFOCLOSE|ISPIPE)) == (FIFOCLOSE|ISPIPE)) {
755 if (((fnp->fn_flag & (ISPIPE|FIFOCLOSE)) == FIFOCLOSE) &&
757 fnp->fn_flag &= ~FIFOCLOSE;
1000 * FIFOCLOSE indicates that one or both sides of the pipe
1003 while ((fn_dest->fn_flag & (FIFOCLOSE | FIFOSEND)) == FIFOSEND) {
H A Dfifovnops.c504 fnp->fn_flag |= FIFOCLOSE;
578 if ((fnp->fn_flag & ISPIPE) && !(fnp->fn_flag & FIFOCLOSE)) {
579 fnp->fn_flag |= FIFOCLOSE;
580 fn_dest->fn_flag |= FIFOCLOSE;
703 * Note: FIFOs can get here with FIFOCLOSE set if
705 * it once closed. Pipes better not have FIFOCLOSE set
707 ASSERT((fnp->fn_flag & (ISPIPE|FIFOCLOSE)) !=
708 (ISPIPE|FIFOCLOSE));
1813 } else if ((fnp->fn_flag & (FIFOCLOSE | ISPIPE)) == FIFOCLOSE
[all...]

Completed in 64 milliseconds