intern-fd.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* Copyright (C) 1994-2026 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library 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 GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <https://www.gnu.org/licenses/>. */
  14. #include <hurd.h>
  15. #include <hurd/fd.h>
  16. /* Allocate a new file descriptor and install PORT in it. FLAGS are as for
  17. `open'; only O_IGNORE_CTTY and O_CLOEXEC are meaningful.
  18. If the descriptor table is full, set errno, and return -1.
  19. If DEALLOC is nonzero, deallocate PORT first. */
  20. int
  21. _hurd_intern_fd (io_t port, int flags, int dealloc)
  22. {
  23. int fd;
  24. struct hurd_fd *d;
  25. HURD_CRITICAL_BEGIN;
  26. d = _hurd_alloc_fd (&fd, 0);
  27. if (d != NULL)
  28. {
  29. _hurd_port2fd (d, port, flags);
  30. __spin_unlock (&d->port.lock);
  31. }
  32. HURD_CRITICAL_END;
  33. if (d == NULL)
  34. {
  35. if (dealloc)
  36. __mach_port_deallocate (__mach_task_self (), port);
  37. return -1;
  38. }
  39. return fd;
  40. }
  41. libc_hidden_def (_hurd_intern_fd)