gccmacro.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #ifndef foogccmacrohfoo
  2. #define foogccmacrohfoo
  3. /***
  4. This file is part of avahi.
  5. avahi is free software; you can redistribute it and/or modify it
  6. under the terms of the GNU Lesser General Public License as
  7. published by the Free Software Foundation; either version 2.1 of the
  8. License, or (at your option) any later version.
  9. avahi is distributed in the hope that it will be useful, but WITHOUT
  10. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
  12. Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with avahi; if not, write to the Free Software
  15. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  16. USA.
  17. ***/
  18. /** \file gccmacro.h Defines some macros for GCC extensions */
  19. #include <avahi-common/cdecl.h>
  20. AVAHI_C_DECL_BEGIN
  21. #if defined(__GNUC__) && (__GNUC__ >= 4) && (__GNUC_MINOR__ >= 3)
  22. #define AVAHI_GCC_ALLOC_SIZE(x) __attribute__ ((__alloc_size__(x)))
  23. #define AVAHI_GCC_ALLOC_SIZE2(x,y) __attribute__ ((__alloc_size__(x,y)))
  24. #else
  25. /** Macro for usage of GCC's alloc_size attribute */
  26. #define AVAHI_GCC_ALLOC_SIZE(x)
  27. #define AVAHI_GCC_ALLOC_SIZE2(x,y)
  28. #endif
  29. #if defined(__GNUC__) && (__GNUC__ >= 4)
  30. #define AVAHI_GCC_SENTINEL __attribute__ ((sentinel))
  31. #else
  32. /** Macro for usage of GCC's sentinel compilation warnings */
  33. #define AVAHI_GCC_SENTINEL
  34. #endif
  35. #ifdef __GNUC__
  36. #define AVAHI_GCC_PRINTF_ATTR(a,b) __attribute__ ((format (printf, a, b)))
  37. #else
  38. /** Macro for usage of GCC's printf compilation warnings */
  39. #define AVAHI_GCC_PRINTF_ATTR(a,b)
  40. #endif
  41. /** Same as AVAHI_GCC_PRINTF_ATTR but hard coded to arguments 1 and 2 */
  42. #define AVAHI_GCC_PRINTF_ATTR12 AVAHI_GCC_PRINTF_ATTR(1,2)
  43. /** Same as AVAHI_GCC_PRINTF_ATTR but hard coded to arguments 2 and 3 */
  44. #define AVAHI_GCC_PRINTF_ATTR23 AVAHI_GCC_PRINTF_ATTR(2,3)
  45. #ifdef __GNUC__
  46. #define AVAHI_GCC_NORETURN __attribute__((noreturn))
  47. #else
  48. /** Macro for no-return functions */
  49. #define AVAHI_GCC_NORETURN
  50. #endif
  51. #ifdef __GNUC__
  52. #define AVAHI_GCC_UNUSED __attribute__ ((unused))
  53. #else
  54. /** Macro for not used parameter */
  55. #define AVAHI_GCC_UNUSED
  56. #endif
  57. AVAHI_C_DECL_END
  58. #endif