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

/vbox/src/VBox/Runtime/r3/posix/
H A Dpipe-posix.cpp257 int fFd = fcntl(hNative, F_GETFL, 0); local
258 AssertReturn(fFd != -1, VERR_INVALID_HANDLE);
259 AssertMsgReturn( (fFd & O_ACCMODE) == (fFlags & RTPIPE_N_READ ? O_RDONLY : O_WRONLY)
260 || (fFd & O_ACCMODE) == O_RDWR /* Solaris creates bi-directional pipes. */
261 , ("%#x\n", fFd), VERR_INVALID_HANDLE);
273 pThis->u32State = fFd & O_NONBLOCK ? 0 : RTPIPE_POSIX_BLOCKING;

Completed in 44 milliseconds