Merge tag 'x86_boot_for_v6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
[linux-block.git] / include / uapi / linux / close_range.h
CommitLineData
60997c3d
CB
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _UAPI_LINUX_CLOSE_RANGE_H
3#define _UAPI_LINUX_CLOSE_RANGE_H
4
5/* Unshare the file descriptor table before closing file descriptors. */
6#define CLOSE_RANGE_UNSHARE (1U << 1)
7
582f1fb6
GS
8/* Set the FD_CLOEXEC bit instead of closing the file descriptor. */
9#define CLOSE_RANGE_CLOEXEC (1U << 2)
10
60997c3d
CB
11#endif /* _UAPI_LINUX_CLOSE_RANGE_H */
12