1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

Bug #9954 mysql-4.1.11/cmd-line-utils/libedit/makelist.sh is not portable

- Reverted removal of errorcheck mutex initialise, used in safe_mutex_init.
This commit is contained in:
msvensson@neptunus.(none)
2005-04-27 13:29:37 +02:00
parent 6b84489a01
commit 565e660bd4
2 changed files with 20 additions and 0 deletions

View File

@@ -612,6 +612,12 @@ extern pthread_mutexattr_t my_fast_mutexattr;
#else
#define MY_MUTEX_INIT_FAST NULL
#endif
#ifdef PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
extern pthread_mutexattr_t my_errorcheck_mutexattr;
#define MY_MUTEX_INIT_ERRCHK &my_errorcheck_mutexattr
#else
#define MY_MUTEX_INIT_ERRCHK NULL
#endif
extern my_bool my_thread_global_init(void);
extern void my_thread_global_end(void);