3 references to O_CLOEXEC
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs (1)
292
flags |= Interop.Sys.OpenFlags.
O_CLOEXEC
;
src\libraries\System.Private.CoreLib\src\System\IO\SharedMemoryManager.Unix.cs (2)
421
SafeFileHandle fd = Interop.Sys.Open(sharedMemoryFilePath, Interop.Sys.OpenFlags.O_RDWR | Interop.Sys.OpenFlags.
O_CLOEXEC
, 0);
469
Interop.Sys.OpenFlags.O_RDWR | Interop.Sys.OpenFlags.
O_CLOEXEC
| Interop.Sys.OpenFlags.O_CREAT | Interop.Sys.OpenFlags.O_EXCL,