Home
last modified time | relevance | path

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

/third_party/python/Modules/
H A D_posixsubprocess.c224 long local_max_fd; in safe_get_max_fd() local
226 local_max_fd = fcntl(0, F_MAXFD); in safe_get_max_fd()
227 if (local_max_fd >= 0) in safe_get_max_fd()
228 return local_max_fd; in safe_get_max_fd()
238 local_max_fd = sysconf(_SC_OPEN_MAX); in safe_get_max_fd()
239 if (local_max_fd == -1) in safe_get_max_fd()
241 local_max_fd = 256; /* Matches legacy Lib/subprocess.py behavior. */ in safe_get_max_fd()
242 return local_max_fd; in safe_get_max_fd()

Completed in 2 milliseconds