diff options
author | Sinisa@sinisa.nasamreza.org <> | 2002-10-30 16:59:49 +0200 |
---|---|---|
committer | Sinisa@sinisa.nasamreza.org <> | 2002-10-30 16:59:49 +0200 |
commit | 26c6d970d9932c397afb5b11d780f595d01c3a8a (patch) | |
tree | 791c4342b1b6c871f04faf12714906fc674dde37 /include | |
parent | 4d22168d680ab37ac733e7eb9722457e3b5a6bc1 (diff) | |
parent | 5fbd7b63c5852ceff5558981b56f3b16334223d5 (diff) | |
download | mariadb-git-26c6d970d9932c397afb5b11d780f595d01c3a8a.tar.gz |
Merge sinisa@work.mysql.com:/home/bk/mysql-4.1
into sinisa.nasamreza.org:/mnt/work/mysql-4.1
Diffstat (limited to 'include')
-rw-r--r-- | include/thr_lock.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/thr_lock.h b/include/thr_lock.h index 7459849cb04..cf5b0cce4bc 100644 --- a/include/thr_lock.h +++ b/include/thr_lock.h @@ -74,6 +74,7 @@ typedef struct st_thr_lock_data { enum thr_lock_type type; ulong thread_id; void *status_param; /* Param to status functions */ + void *debug_print_param; } THR_LOCK_DATA; struct st_lock_list { @@ -97,6 +98,9 @@ typedef struct st_thr_lock { } THR_LOCK; +extern LIST *thr_lock_thread_list; +extern pthread_mutex_t THR_LOCK_lock; + my_bool init_thr_lock(void); /* Must be called once/thread */ void thr_lock_init(THR_LOCK *lock); void thr_lock_delete(THR_LOCK *lock); |