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