error.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* Specializations for error 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 _ERROR_H
  16. # error "Never include <bits/error.h> directly; use <error.h> instead."
  17. #endif
  18. extern void __REDIRECT (__error_alias, (int __status, int __errnum,
  19. const char *__format, ...),
  20. error)
  21. __attribute__ ((__format__ (__printf__, 3, 4)));
  22. extern void __REDIRECT (__error_noreturn, (int __status, int __errnum,
  23. const char *__format, ...),
  24. error)
  25. __attribute__ ((__noreturn__, __format__ (__printf__, 3, 4)));
  26. /* If we know the function will never return make sure the compiler
  27. realizes that, too. */
  28. __extern_always_inline void
  29. error (int __status, int __errnum, const char *__format, ...)
  30. {
  31. if (__builtin_constant_p (__status) && __status != 0)
  32. __error_noreturn (__status, __errnum, __format, __va_arg_pack ());
  33. else
  34. __error_alias (__status, __errnum, __format, __va_arg_pack ());
  35. }
  36. extern void __REDIRECT (__error_at_line_alias, (int __status, int __errnum,
  37. const char *__fname,
  38. unsigned int __line,
  39. const char *__format, ...),
  40. error_at_line)
  41. __attribute__ ((__format__ (__printf__, 5, 6)));
  42. extern void __REDIRECT (__error_at_line_noreturn, (int __status, int __errnum,
  43. const char *__fname,
  44. unsigned int __line,
  45. const char *__format,
  46. ...),
  47. error_at_line)
  48. __attribute__ ((__noreturn__, __format__ (__printf__, 5, 6)));
  49. /* If we know the function will never return make sure the compiler
  50. realizes that, too. */
  51. __extern_always_inline void
  52. error_at_line (int __status, int __errnum, const char *__fname,
  53. unsigned int __line, const char *__format, ...)
  54. {
  55. if (__builtin_constant_p (__status) && __status != 0)
  56. __error_at_line_noreturn (__status, __errnum, __fname, __line, __format,
  57. __va_arg_pack ());
  58. else
  59. __error_at_line_alias (__status, __errnum, __fname, __line,
  60. __format, __va_arg_pack ());
  61. }