logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

close_range.h (377B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _LINUX_CLOSE_RANGE_H
  3. #define _LINUX_CLOSE_RANGE_H
  4. /* Unshare the file descriptor table before closing file descriptors. */
  5. #define CLOSE_RANGE_UNSHARE (1U << 1)
  6. /* Set the FD_CLOEXEC bit instead of closing the file descriptor. */
  7. #define CLOSE_RANGE_CLOEXEC (1U << 2)
  8. #endif /* _LINUX_CLOSE_RANGE_H */