Commit 6d4d4873 authored by unknown's avatar unknown

Merge mysql.com:/home/pz/mysql/mysql-4.1-root

into mysql.com:/home/pz/mysql/mysql-4.1

parents e79e53dc 3d698ba9
...@@ -182,7 +182,6 @@ static char szPipeName [ 257 ]; ...@@ -182,7 +182,6 @@ static char szPipeName [ 257 ];
static SECURITY_ATTRIBUTES saPipeSecurity; static SECURITY_ATTRIBUTES saPipeSecurity;
static SECURITY_DESCRIPTOR sdPipeDescriptor; static SECURITY_DESCRIPTOR sdPipeDescriptor;
static HANDLE hPipe = INVALID_HANDLE_VALUE; static HANDLE hPipe = INVALID_HANDLE_VALUE;
static uint handler_count;
static bool opt_enable_named_pipe = 0; static bool opt_enable_named_pipe = 0;
#endif #endif
#ifdef __WIN__ #ifdef __WIN__
......
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#endif #endif
#include "mysql_priv.h" #include "mysql_priv.h"
#include <my_pthread.h>
#ifdef HAVE_DLOPEN #ifdef HAVE_DLOPEN
extern "C" extern "C"
...@@ -70,7 +71,7 @@ extern "C" ...@@ -70,7 +71,7 @@ extern "C"
static bool initialized = 0; static bool initialized = 0;
static MEM_ROOT mem; static MEM_ROOT mem;
static HASH udf_hash; static HASH udf_hash;
static pthread_mutex_t THR_LOCK_udf; static rw_lock_t THR_LOCK_udf;
static udf_func *add_udf(char *name, Item_result ret, char *dl, static udf_func *add_udf(char *name, Item_result ret, char *dl,
...@@ -122,8 +123,8 @@ void udf_init() ...@@ -122,8 +123,8 @@ void udf_init()
if (initialized) if (initialized)
DBUG_VOID_RETURN; DBUG_VOID_RETURN;
pthread_mutex_init(&THR_LOCK_udf,MY_MUTEX_INIT_SLOW); my_rwlock_init(&THR_LOCK_udf,NULL);
init_sql_alloc(&mem, 1024,0); init_sql_alloc(&mem, 1024,0);
THD *new_thd = new THD; THD *new_thd = new THD;
if (!new_thd || if (!new_thd ||
...@@ -262,7 +263,7 @@ static void del_udf(udf_func *udf) ...@@ -262,7 +263,7 @@ static void del_udf(udf_func *udf)
void free_udf(udf_func *udf) void free_udf(udf_func *udf)
{ {
DBUG_ENTER("free_udf"); DBUG_ENTER("free_udf");
pthread_mutex_lock(&THR_LOCK_udf); rw_wrlock(&THR_LOCK_udf);
if (!--udf->usage_count) if (!--udf->usage_count)
{ {
/* /*
...@@ -274,7 +275,7 @@ void free_udf(udf_func *udf) ...@@ -274,7 +275,7 @@ void free_udf(udf_func *udf)
if (!find_udf_dl(udf->dl)) if (!find_udf_dl(udf->dl))
dlclose(udf->dlhandle); dlclose(udf->dlhandle);
} }
pthread_mutex_unlock(&THR_LOCK_udf); rw_unlock(&THR_LOCK_udf);
DBUG_VOID_RETURN; DBUG_VOID_RETURN;
} }
...@@ -287,7 +288,7 @@ udf_func *find_udf(const char *name,uint length,bool mark_used) ...@@ -287,7 +288,7 @@ udf_func *find_udf(const char *name,uint length,bool mark_used)
DBUG_ENTER("find_udf"); DBUG_ENTER("find_udf");
/* TODO: This should be changed to reader locks someday! */ /* TODO: This should be changed to reader locks someday! */
pthread_mutex_lock(&THR_LOCK_udf); rw_rdlock(&THR_LOCK_udf);
if ((udf=(udf_func*) hash_search(&udf_hash,(byte*) name, if ((udf=(udf_func*) hash_search(&udf_hash,(byte*) name,
length ? length : (uint) strlen(name)))) length ? length : (uint) strlen(name))))
{ {
...@@ -296,7 +297,7 @@ udf_func *find_udf(const char *name,uint length,bool mark_used) ...@@ -296,7 +297,7 @@ udf_func *find_udf(const char *name,uint length,bool mark_used)
else if (mark_used) else if (mark_used)
udf->usage_count++; udf->usage_count++;
} }
pthread_mutex_unlock(&THR_LOCK_udf); rw_unlock(&THR_LOCK_udf);
DBUG_RETURN(udf); DBUG_RETURN(udf);
} }
...@@ -375,7 +376,7 @@ int mysql_create_function(THD *thd,udf_func *udf) ...@@ -375,7 +376,7 @@ int mysql_create_function(THD *thd,udf_func *udf)
DBUG_RETURN(1); DBUG_RETURN(1);
} }
pthread_mutex_lock(&THR_LOCK_udf); rw_wrlock(&THR_LOCK_udf);
if ((hash_search(&udf_hash,(byte*) udf->name, udf->name_length))) if ((hash_search(&udf_hash,(byte*) udf->name, udf->name_length)))
{ {
net_printf(thd, ER_UDF_EXISTS, udf->name); net_printf(thd, ER_UDF_EXISTS, udf->name);
...@@ -438,13 +439,13 @@ int mysql_create_function(THD *thd,udf_func *udf) ...@@ -438,13 +439,13 @@ int mysql_create_function(THD *thd,udf_func *udf)
del_udf(u_d); del_udf(u_d);
goto err; goto err;
} }
pthread_mutex_unlock(&THR_LOCK_udf); rw_unlock(&THR_LOCK_udf);
DBUG_RETURN(0); DBUG_RETURN(0);
err: err:
if (new_dl) if (new_dl)
dlclose(dl); dlclose(dl);
pthread_mutex_unlock(&THR_LOCK_udf); rw_unlock(&THR_LOCK_udf);
DBUG_RETURN(1); DBUG_RETURN(1);
} }
...@@ -460,7 +461,7 @@ int mysql_drop_function(THD *thd,const char *udf_name) ...@@ -460,7 +461,7 @@ int mysql_drop_function(THD *thd,const char *udf_name)
send_error(thd, ER_OUT_OF_RESOURCES, ER(ER_OUT_OF_RESOURCES)); send_error(thd, ER_OUT_OF_RESOURCES, ER(ER_OUT_OF_RESOURCES));
DBUG_RETURN(1); DBUG_RETURN(1);
} }
pthread_mutex_lock(&THR_LOCK_udf); rw_wrlock(&THR_LOCK_udf);
if (!(udf=(udf_func*) hash_search(&udf_hash,(byte*) udf_name, if (!(udf=(udf_func*) hash_search(&udf_hash,(byte*) udf_name,
(uint) strlen(udf_name)))) (uint) strlen(udf_name))))
{ {
...@@ -490,10 +491,10 @@ int mysql_drop_function(THD *thd,const char *udf_name) ...@@ -490,10 +491,10 @@ int mysql_drop_function(THD *thd,const char *udf_name)
} }
close_thread_tables(thd); close_thread_tables(thd);
pthread_mutex_unlock(&THR_LOCK_udf); rw_unlock(&THR_LOCK_udf);
DBUG_RETURN(0); DBUG_RETURN(0);
err: err:
pthread_mutex_unlock(&THR_LOCK_udf); rw_unlock(&THR_LOCK_udf);
DBUG_RETURN(1); DBUG_RETURN(1);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment