diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-18 10:59:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-18 10:59:20 +0000 |
commit | 729924a042266022cc469501d01b33f0f9ae4bfc (patch) | |
tree | 3f126578aaeded27587803838c29ca14210c4c4d /nptl/pthreadP.h | |
parent | 8bd3f1844a9912b6ca08ef4bc47b1e3e2ef21029 (diff) | |
download | glibc-729924a042266022cc469501d01b33f0f9ae4bfc.tar glibc-729924a042266022cc469501d01b33f0f9ae4bfc.tar.gz glibc-729924a042266022cc469501d01b33f0f9ae4bfc.tar.bz2 glibc-729924a042266022cc469501d01b33f0f9ae4bfc.zip |
Update.
2003-02-18 Ulrich Drepper <drepper@redhat.com>
* pthreadP.h: Define dummy versio of DEBUGGING_P.
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 2b65192f68..11f7ede32f 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -67,7 +67,12 @@ extern unsigned int __nptl_nthreads attribute_hidden; /* The library can run in debugging mode where it performs a lot more tests. */ extern int __pthread_debug attribute_hidden; -#define DEBUGGING_P __builtin_expect (__pthread_debug, 0) +/** For now disable debugging support. */ +#if 0 +# define DEBUGGING_P __builtin_expect (__pthread_debug, 0) +#else +# define DEBUGGING_P 0 +#endif /* Cancellation test. */ |