Searched defs:fcntl_flags (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/truss/
H A Dprint.c2300 static struct fcntl_flags { struct
2303 } fcntl_flags[] = { variable in typeref:struct:fcntl_flags
2331 struct fcntl_flags *fp;
2344 for (fp = fcntl_flags;
2345 fp < &fcntl_flags[sizeof (fcntl_flags) / sizeof (*fp)]; fp++) {
/illumos-gate/usr/src/lib/libtecla/common/
H A Dgetline.c2703 int fcntl_flags; /* The new file-descriptor control flags */ local
2718 fcntl_flags = fcntl(fd, F_GETFL) | NON_BLOCKING_FLAG;
2722 if(fcntl(fd, F_SETFL, fcntl_flags) == -1) {
2739 int fcntl_flags; /* The new file-descriptor control flags */ local
2748 fcntl_flags = fcntl(fd, F_GETFL) & ~NON_BLOCKING_FLAG;
2752 if(fcntl(fd, F_SETFL, fcntl_flags) == -1) {

Completed in 127 milliseconds