diff options
author | unknown <jcole@tetra.spaceapes.com> | 2001-01-27 03:24:05 -0600 |
---|---|---|
committer | unknown <jcole@tetra.spaceapes.com> | 2001-01-27 03:24:05 -0600 |
commit | 882f16d0369b4cd0742ac37650a71fc6f3b00a57 (patch) | |
tree | 26c80620cd60c2689d8eb1f3eca78b805558f0f8 /mysys/mysys_priv.h | |
parent | 77be4587507b753c647d86d1231def8e7d3313fc (diff) | |
download | mariadb-git-882f16d0369b4cd0742ac37650a71fc6f3b00a57.tar.gz |
Added --temp-pool option to mysqld. This will cause temporary files
created to use a small set of filenames, to try and avoid problems
in the Linux kernel.
mysys/Makefile.am:
Added my_bitmap.c
mysys/my_init.c:
my_bitmap code added
mysys/mysys_priv.h:
my_bitmap
sql/mysql_priv.h:
temp pool stuff.
sql/mysqld.cc:
--temp-pool option added
sql/sql_select.cc:
temp pool stuff
sql/table.h:
temp pool
Diffstat (limited to 'mysys/mysys_priv.h')
-rw-r--r-- | mysys/mysys_priv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysys/mysys_priv.h b/mysys/mysys_priv.h index 86c32202e99..20fda270658 100644 --- a/mysys/mysys_priv.h +++ b/mysys/mysys_priv.h @@ -25,6 +25,7 @@ #ifdef THREAD extern pthread_mutex_t THR_LOCK_malloc,THR_LOCK_open,THR_LOCK_keycache, THR_LOCK_lock,THR_LOCK_isam,THR_LOCK_net,THR_LOCK_charset; +extern pthread_mutex_t LOCK_bitmap; #else /* THREAD */ #define pthread_mutex_lock(A) #define pthread_mutex_unlock(A) |