mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +00:00
Fix HP_SMALL_TIMING_AVAIL -Wundef warnings
ChangeLog: 2014-03-17 Will Newton <will.newton@linaro.org> * sysdeps/generic/ldsodefs.h: Check whether HP_SMALL_TIMING_AVAIL is defined with #ifdef rather than #if.
This commit is contained in:
parent
788bba368c
commit
53f1bed392
@ -1,5 +1,9 @@
|
||||
2014-03-17 Will Newton <will.newton@linaro.org>
|
||||
|
||||
* sysdeps/generic/ldsodefs.h: Check whether
|
||||
HP_SMALL_TIMING_AVAIL is defined with #ifdef rather
|
||||
than #if.
|
||||
|
||||
* nptl/sysdeps/pthread/pthread.h: Check
|
||||
__PTHREAD_MUTEX_HAVE_ELISION is defined before testing
|
||||
its value.
|
||||
|
@ -322,7 +322,7 @@ struct rtld_global
|
||||
/* The object to be initialized first. */
|
||||
EXTERN struct link_map *_dl_initfirst;
|
||||
|
||||
#if HP_TIMING_AVAIL || HP_SMALL_TIMING_AVAIL
|
||||
#if HP_TIMING_AVAIL || defined HP_SMALL_TIMING_AVAIL
|
||||
/* Start time on CPU clock. */
|
||||
EXTERN hp_timing_t _dl_cpuclock_offset;
|
||||
#endif
|
||||
@ -535,7 +535,7 @@ struct rtld_global_ro
|
||||
/* All search directories defined at startup. */
|
||||
EXTERN struct r_search_path_elem *_dl_init_all_dirs;
|
||||
|
||||
#if HP_TIMING_AVAIL || HP_SMALL_TIMING_AVAIL
|
||||
#if HP_TIMING_AVAIL || defined HP_SMALL_TIMING_AVAIL
|
||||
/* Overhead of a high-precision timing measurement. */
|
||||
EXTERN hp_timing_t _dl_hp_timing_overhead;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user