Searched refs:fcntl_flags (Results 1 – 2 of 2) sorted by relevance
2204 static struct fcntl_flags { struct2207 } fcntl_flags[] = { argument2235 struct fcntl_flags *fp; in prt_ffg()2248 for (fp = fcntl_flags; in prt_ffg()2249 fp < &fcntl_flags[sizeof (fcntl_flags) / sizeof (*fp)]; fp++) { in prt_ffg()
2703 int fcntl_flags; /* The new file-descriptor control flags */ in gl_nonblocking_io() local2718 fcntl_flags = fcntl(fd, F_GETFL) | NON_BLOCKING_FLAG; in gl_nonblocking_io()2722 if(fcntl(fd, F_SETFL, fcntl_flags) == -1) { in gl_nonblocking_io()2739 int fcntl_flags; /* The new file-descriptor control flags */ in gl_blocking_io() local2748 fcntl_flags = fcntl(fd, F_GETFL) & ~NON_BLOCKING_FLAG; in gl_blocking_io()2752 if(fcntl(fd, F_SETFL, fcntl_flags) == -1) { in gl_blocking_io()