cloexec.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* closexec.c - set or clear the close-on-exec descriptor flag
  2. Copyright (C) 1991, 2004, 2005, 2006 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software Foundation,
  13. Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  14. The code is taken from glibc/manual/llio.texi */
  15. #include <config.h>
  16. #include "cloexec.h"
  17. #include <unistd.h>
  18. #include <fcntl.h>
  19. #ifndef FD_CLOEXEC
  20. # define FD_CLOEXEC 1
  21. #endif
  22. /* Set the `FD_CLOEXEC' flag of DESC if VALUE is true,
  23. or clear the flag if VALUE is false.
  24. Return 0 on success, or -1 on error with `errno' set. */
  25. int
  26. set_cloexec_flag (int desc, bool value)
  27. {
  28. #if defined F_GETFD && defined F_SETFD
  29. int flags = fcntl (desc, F_GETFD, 0);
  30. if (0 <= flags)
  31. {
  32. int newflags = (value ? flags | FD_CLOEXEC : flags & ~FD_CLOEXEC);
  33. if (flags == newflags
  34. || fcntl (desc, F_SETFD, newflags) != -1)
  35. return 0;
  36. }
  37. return -1;
  38. #else
  39. return 0;
  40. #endif
  41. }