From: Ken Raeburn Date: Wed, 14 Jul 2004 01:33:35 +0000 (+0000) Subject: * k5-platform.h (k5_call_init_function) [DELAY_INITIALIZER] [__GNUC__]: Use a X-Git-Tag: krb5-1.4-beta1~218 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1689fcdeda3df29895e09bfccb315d1f38c8ce55;p=krb5.git * k5-platform.h (k5_call_init_function) [DELAY_INITIALIZER] [__GNUC__]: Use a statement expression so any line number info printed by assertion failures is useful. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16589 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/ChangeLog b/src/include/ChangeLog index 22915dd2b..9bceef3ad 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,5 +1,9 @@ 2004-07-13 Ken Raeburn + * k5-platform.h (k5_call_init_function) [DELAY_INITIALIZER] + [__GNUC__]: Use a statement expression so any line number info + printed by assertion failures is useful. + * k5-thread.h (k5_os_mutex_init, k5_os_mutex_destroy): If USE_PTHREAD_LOCK_ONLY_IF_LOADED is defined, use pthread_mutex_init and _destroy only if pthread support is loaded. diff --git a/src/include/k5-platform.h b/src/include/k5-platform.h index bf8a58432..e0793f629 100644 --- a/src/include/k5-platform.h +++ b/src/include/k5-platform.h @@ -168,6 +168,18 @@ typedef struct { k5_once_t once; int error, did_run; void (*fn)(void); } k5_init static int NAME(void) # define CALL_INIT_FUNCTION(NAME) \ k5_call_init_function(& JOIN__2(NAME, once)) +# ifdef __GNUC__ +/* Do it in macro form so we get the file/line of the invocation if + the assertion fails. */ +# define k5_call_init_function(I) \ + (__extension__ ({ \ + k5_init_t *k5int_i = (I); \ + int k5int_err = k5_once(&k5int_i->once, k5int_i->fn); \ + (k5int_err \ + ? k5int_err \ + : (assert(k5int_i->did_run != 0), k5int_i->error)); \ + })) +# else static inline int k5_call_init_function(k5_init_t *i) { int err; @@ -177,6 +189,7 @@ static inline int k5_call_init_function(k5_init_t *i) assert (i->did_run != 0); return i->error; } +# endif /* This should be called in finalization only, so we shouldn't have multiple active threads mucking around in our library at this point. So ignore the once_t object and just look at the flag.