new macro.

Thu Aug 23 16:14:17 2001  Tim Janik  <timj@gtk.org>

        * glib/gmacros.h (G_GNUC_NO_INSTRUMENT): new macro.
This commit is contained in:
Tim Janik 2001-08-23 14:13:32 +00:00 committed by Tim Janik
parent 0f3bd484ee
commit 3b6fd34af7
9 changed files with 35 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Thu Aug 23 16:14:17 2001 Tim Janik <timj@gtk.org>
* glib/gmacros.h (G_GNUC_NO_INSTRUMENT): new macro.
2001-08-21 Abel Cheung <maddog@linux.org.hk> 2001-08-21 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "zh_TW" to ALL_LINGUAS. * configure.in: Added "zh_TW" to ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
Thu Aug 23 16:14:17 2001 Tim Janik <timj@gtk.org>
* glib/gmacros.h (G_GNUC_NO_INSTRUMENT): new macro.
2001-08-21 Abel Cheung <maddog@linux.org.hk> 2001-08-21 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "zh_TW" to ALL_LINGUAS. * configure.in: Added "zh_TW" to ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
Thu Aug 23 16:14:17 2001 Tim Janik <timj@gtk.org>
* glib/gmacros.h (G_GNUC_NO_INSTRUMENT): new macro.
2001-08-21 Abel Cheung <maddog@linux.org.hk> 2001-08-21 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "zh_TW" to ALL_LINGUAS. * configure.in: Added "zh_TW" to ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
Thu Aug 23 16:14:17 2001 Tim Janik <timj@gtk.org>
* glib/gmacros.h (G_GNUC_NO_INSTRUMENT): new macro.
2001-08-21 Abel Cheung <maddog@linux.org.hk> 2001-08-21 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "zh_TW" to ALL_LINGUAS. * configure.in: Added "zh_TW" to ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
Thu Aug 23 16:14:17 2001 Tim Janik <timj@gtk.org>
* glib/gmacros.h (G_GNUC_NO_INSTRUMENT): new macro.
2001-08-21 Abel Cheung <maddog@linux.org.hk> 2001-08-21 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "zh_TW" to ALL_LINGUAS. * configure.in: Added "zh_TW" to ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
Thu Aug 23 16:14:17 2001 Tim Janik <timj@gtk.org>
* glib/gmacros.h (G_GNUC_NO_INSTRUMENT): new macro.
2001-08-21 Abel Cheung <maddog@linux.org.hk> 2001-08-21 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "zh_TW" to ALL_LINGUAS. * configure.in: Added "zh_TW" to ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
Thu Aug 23 16:14:17 2001 Tim Janik <timj@gtk.org>
* glib/gmacros.h (G_GNUC_NO_INSTRUMENT): new macro.
2001-08-21 Abel Cheung <maddog@linux.org.hk> 2001-08-21 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "zh_TW" to ALL_LINGUAS. * configure.in: Added "zh_TW" to ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
Thu Aug 23 16:14:17 2001 Tim Janik <timj@gtk.org>
* glib/gmacros.h (G_GNUC_NO_INSTRUMENT): new macro.
2001-08-21 Abel Cheung <maddog@linux.org.hk> 2001-08-21 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "zh_TW" to ALL_LINGUAS. * configure.in: Added "zh_TW" to ALL_LINGUAS.

View File

@ -67,6 +67,8 @@
__attribute__((const)) __attribute__((const))
#define G_GNUC_UNUSED \ #define G_GNUC_UNUSED \
__attribute__((unused)) __attribute__((unused))
#define G_GNUC_NO_INSTRUMENT \
__attribute__((no_instrument_function))
#else /* !__GNUC__ */ #else /* !__GNUC__ */
#define G_GNUC_PRINTF( format_idx, arg_idx ) #define G_GNUC_PRINTF( format_idx, arg_idx )
#define G_GNUC_SCANF( format_idx, arg_idx ) #define G_GNUC_SCANF( format_idx, arg_idx )
@ -74,6 +76,7 @@
#define G_GNUC_NORETURN #define G_GNUC_NORETURN
#define G_GNUC_CONST #define G_GNUC_CONST
#define G_GNUC_UNUSED #define G_GNUC_UNUSED
#define G_GNUC_NO_INSTRUMENT
#endif /* !__GNUC__ */ #endif /* !__GNUC__ */
/* Wrap the gcc __PRETTY_FUNCTION__ and __FUNCTION__ variables with /* Wrap the gcc __PRETTY_FUNCTION__ and __FUNCTION__ variables with