poll_posix.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * poll_posix: poll compatibility wrapper for POSIX systems
  3. * Copyright © 2013 RealVNC Ltd.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. *
  19. */
  20. #include <unistd.h>
  21. #include <fcntl.h>
  22. #include <errno.h>
  23. #include <stdlib.h>
  24. #include "libusbi.h"
  25. int usbi_pipe(int pipefd[2])
  26. {
  27. int ret = pipe(pipefd);
  28. if (ret != 0) {
  29. return ret;
  30. }
  31. ret = fcntl(pipefd[1], F_GETFL);
  32. if (ret == -1) {
  33. usbi_dbg("Failed to get pipe fd flags: %d", errno);
  34. goto err_close_pipe;
  35. }
  36. ret = fcntl(pipefd[1], F_SETFL, ret | O_NONBLOCK);
  37. if (ret != 0) {
  38. usbi_dbg("Failed to set non-blocking on new pipe: %d", errno);
  39. goto err_close_pipe;
  40. }
  41. return 0;
  42. err_close_pipe:
  43. usbi_close(pipefd[0]);
  44. usbi_close(pipefd[1]);
  45. return ret;
  46. }