mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
linking problem fix
server-tools/instance-manager/Makefile.am: fix that should solve the linking problem (libmysqlclient conflicts with libmysys) server-tools/instance-manager/instance_map.cc: propagae phtead_mutex_* functions from the wrapper
This commit is contained in:
@@ -141,13 +141,13 @@ Instance_map::~Instance_map()
|
||||
|
||||
int Instance_map::lock()
|
||||
{
|
||||
pthread_mutex_lock(&LOCK_instance_map);
|
||||
return pthread_mutex_lock(&LOCK_instance_map);
|
||||
}
|
||||
|
||||
|
||||
int Instance_map::unlock()
|
||||
{
|
||||
pthread_mutex_unlock(&LOCK_instance_map);
|
||||
return pthread_mutex_unlock(&LOCK_instance_map);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user