Searched refs:FD_CLOEXEC (Results 1 – 7 of 7) sorted by relevance
/PHP-5.4/sapi/fpm/fpm/ |
H A D | fpm_signals.c | 196 if (0 > fcntl(sp[0], F_SETFD, FD_CLOEXEC) || 0 > fcntl(sp[1], F_SETFD, FD_CLOEXEC)) { in fpm_signals_init_main()
|
H A D | fpm_stdio.c | 306 if (0 > fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC)) {
|
H A D | fpm_log.c | 60 if (0 > fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC)) { in fpm_log_open()
|
/PHP-5.4/ext/session/ |
H A D | mod_files.c | 201 # ifndef FD_CLOEXEC in ps_files_open() 202 # define FD_CLOEXEC 1 in ps_files_open() macro 204 if (fcntl(data->fd, F_SETFD, FD_CLOEXEC)) { in ps_files_open()
|
/PHP-5.4/ext/standard/ |
H A D | proc_open.c | 952 # if defined(F_SETFD) && defined(FD_CLOEXEC) in PHP_FUNCTION() 954 fcntl(descriptors[i].parentend, F_SETFD, FD_CLOEXEC); in PHP_FUNCTION()
|
/PHP-5.4/sapi/litespeed/ |
H A D | lsapilib.c | 2268 fcntl( fd, F_SETFD, FD_CLOEXEC ); in LSAPI_CreateListenSock2()
|
/PHP-5.4/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 26054 #if defined(FD_CLOEXEC) && (!defined(O_CLOEXEC) || O_CLOEXEC==0) 26055 osFcntl(fd, F_SETFD, osFcntl(fd, F_GETFD, 0) | FD_CLOEXEC);
|
Completed in 562 milliseconds