diff options
author | unknown <monty@hundin.mysql.fi> | 2002-06-20 23:26:39 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-06-20 23:26:39 +0300 |
commit | 2e20fc9a2c0696a8c31fe47e6a18550cc50bd112 (patch) | |
tree | eacae5fd082021efcb17098eab511ba6b6465dde /mysys | |
parent | 8d1568b88206aad44c7c934178e1da6a23cbbc67 (diff) | |
download | mariadb-git-2e20fc9a2c0696a8c31fe47e6a18550cc50bd112.tar.gz |
Fixes for compiling distribution with MIT-threads
client/mysql.cc:
Fixes for MIT-pthreads
libmysqld/examples/Makefile.am:
Fixes for MIT-pthreads
mit-pthreads/machdep/linux-2.0/__string.h:
Fixes for MIT-pthreads
mysys/my_thr_init.c:
Fixed spelling error.
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/my_thr_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_thr_init.c b/mysys/my_thr_init.c index 9f91f7a392d..45c10e5a7b6 100644 --- a/mysys/my_thr_init.c +++ b/mysys/my_thr_init.c @@ -55,7 +55,7 @@ my_bool my_thread_global_init(void) pthread_mutexattr_init(&my_fast_mutexattr); pthread_mutexattr_setkind_np(&my_fast_mutexattr,PTHREAD_MUTEX_ADAPTIVE_NP); #endif -#ifdef PPTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP +#ifdef PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP pthread_mutexattr_init(&my_errchk_mutexattr); pthread_mutexattr_setkind_np(&my_errchk_mutexattr, PTHREAD_MUTEX_ERRORCHECK_NP); |