1
0
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:
unknown
2004-11-04 02:42:22 +03:00
parent 7a3a757fd5
commit bb63229331
2 changed files with 23 additions and 13 deletions

View File

@@ -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);
}