mqueue2.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* Checking macros for mq functions.
  2. Copyright (C) 2007-2016 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _FCNTL_H
  16. # error "Never include <bits/mqueue2.h> directly; use <mqueue.h> instead."
  17. #endif
  18. /* Check that calls to mq_open with O_CREAT set have an appropriate third and fourth
  19. parameter. */
  20. extern mqd_t mq_open (const char *__name, int __oflag, ...)
  21. __THROW __nonnull ((1));
  22. extern mqd_t __mq_open_2 (const char *__name, int __oflag)
  23. __THROW __nonnull ((1));
  24. extern mqd_t __REDIRECT_NTH (__mq_open_alias, (const char *__name,
  25. int __oflag, ...), mq_open)
  26. __nonnull ((1));
  27. __errordecl (__mq_open_wrong_number_of_args,
  28. "mq_open can be called either with 2 or 4 arguments");
  29. __errordecl (__mq_open_missing_mode_and_attr,
  30. "mq_open with O_CREAT in second argument needs 4 arguments");
  31. __fortify_function mqd_t
  32. __NTH (mq_open (const char *__name, int __oflag, ...))
  33. {
  34. if (__va_arg_pack_len () != 0 && __va_arg_pack_len () != 2)
  35. __mq_open_wrong_number_of_args ();
  36. if (__builtin_constant_p (__oflag))
  37. {
  38. if ((__oflag & O_CREAT) != 0 && __va_arg_pack_len () == 0)
  39. {
  40. __mq_open_missing_mode_and_attr ();
  41. return __mq_open_2 (__name, __oflag);
  42. }
  43. return __mq_open_alias (__name, __oflag, __va_arg_pack ());
  44. }
  45. if (__va_arg_pack_len () == 0)
  46. return __mq_open_2 (__name, __oflag);
  47. return __mq_open_alias (__name, __oflag, __va_arg_pack ());
  48. }