Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
0002 #ifndef _UAPI_LINUX_CLOSE_RANGE_H
0003 #define _UAPI_LINUX_CLOSE_RANGE_H
0004 
0005 /* Unshare the file descriptor table before closing file descriptors. */
0006 #define CLOSE_RANGE_UNSHARE (1U << 1)
0007 
0008 /* Set the FD_CLOEXEC bit instead of closing the file descriptor. */
0009 #define CLOSE_RANGE_CLOEXEC (1U << 2)
0010 
0011 #endif /* _UAPI_LINUX_CLOSE_RANGE_H */
0012