mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Fixed failing test cases and compiler warnings
- Fixed wait condition in kill_processlist-6619 - Updated Ssl_chiper for openssl tests - Added supression for valgrinds when using libcrypto - Fixed wrong argument to pthread_mutex in server_audit.c when compiling with debug - Adding missing debug_sync_update() to debug_sync.h - Added initializers to some variables and fixed error handling in jsonudf.cpp - Fixed cluster_filter_unpack_varchar which doesn't have a stable index type. - Updated compiler_warnings.supp
This commit is contained in:
@@ -97,13 +97,11 @@ static void closelog() {}
|
||||
#define FLOGGER_NO_PSI
|
||||
|
||||
/* How to access the pthread_mutex in mysql_mutex_t */
|
||||
//#ifdef SAFE_MUTEX
|
||||
//#define mysql_mutex_real_mutex(A) &(A)->m_mutex.mutex
|
||||
//#elif defined(MY_PTHREAD_FASTMUTEX)
|
||||
//#define mysql_mutex_real_mutex(A) &(A)->m_mutex.mutex
|
||||
//#else
|
||||
#if defined(SAFE_MUTEX) || defined(MY_PTHREAD_FASTMUTEX)
|
||||
#define mysql_mutex_real_mutex(A) &(A)->m_mutex.mutex
|
||||
#else
|
||||
#define mysql_mutex_real_mutex(A) &(A)->m_mutex
|
||||
//#endif
|
||||
#endif
|
||||
|
||||
#define flogger_mutex_init(A,B,C) do{}while(0)
|
||||
#define flogger_mutex_destroy(A) do{}while(0)
|
||||
|
||||
Reference in New Issue
Block a user