Home
last modified time | relevance | path

Searched refs:O_CLOEXEC (Results 1 – 7 of 7) sorted by relevance

/libuv/src/unix/
H A Dinternal.h154 #if !defined(O_CLOEXEC) && defined(__FreeBSD__)
159 # define O_CLOEXEC 0x00100000 macro
H A Dfs.c301 #ifdef O_CLOEXEC in uv__fs_mkstemp()
326 #ifdef O_CLOEXEC in uv__fs_mkstemp()
329 r = uv__mkostemp(path, O_CLOEXEC); in uv__fs_mkstemp()
371 #ifdef O_CLOEXEC in uv__fs_open()
372 return open(req->path, req->flags | O_CLOEXEC, req->mode); in uv__fs_open()
H A Dpipe.c510 int flags = O_CLOEXEC; in uv_pipe()
H A Dcore.c1045 #if defined(O_CLOEXEC) in uv__open_cloexec()
1048 fd = open(path, flags | O_CLOEXEC); in uv__open_cloexec()
1102 r = dup3(oldfd, newfd, O_CLOEXEC); in uv__dup2_cloexec()
H A Dlinux.c643 loop->backend_fd = epoll_create1(O_CLOEXEC); in uv__platform_loop_init()
951 sqe->open_flags = req->flags | O_CLOEXEC; in uv__iou_fs_open()
/libuv/docs/src/
H A Dpipe.rst180 Equivalent to :man:`pipe(2)` with the `O_CLOEXEC` flag set.
/libuv/
H A DChangeLog2007 * unix: simplify open(O_CLOEXEC) feature detection (Ben Noordhuis)
2138 * linux: use O_CLOEXEC instead of EPOLL_CLOEXEC (Ben Noordhuis)
3908 * unix: use open(2) with O_CLOEXEC on OS X (Kári Tristan Helgason)
4363 * unix: clean up uv_fs_open() O_CLOEXEC logic (Ben Noordhuis)

Completed in 35 milliseconds