summaryrefslogtreecommitdiff
path: root/include/thr_lock.h
diff options
context:
space:
mode:
authorunknown <monty@narttu.mysql.fi>2003-02-27 17:35:51 +0200
committerunknown <monty@narttu.mysql.fi>2003-02-27 17:35:51 +0200
commite6dad7043682a140ed907b3dd5a79904603fde33 (patch)
tree9a78565a91c6598a50921f763c99dee6cfe2c4d1 /include/thr_lock.h
parentbe9a61f17541339a2d5ac71f48cf2cb1cb78d305 (diff)
downloadmariadb-git-e6dad7043682a140ed907b3dd5a79904603fde33.tar.gz
Added detection if pthread_attr_getstacksize() exists
Fixed bug in RAND() usage in mysqlbinlog configure.in: Added detection if pthread_attr_getstacksize() exists include/thr_lock.h: Fixed wrong comment sql/log_event.cc: Fixed bug in RAND() usage in mysqlbinlog sql/mysqld.cc: Portablity fix sql/repl_failsafe.cc: Set host_or_ip for system threads (to make other code simpler) sql/slave.cc: Set host_or_ip for system threads (to make other code simpler) sql/sql_class.cc: Set host_or_ip for system threads (to make other code simpler) sql/sql_insert.cc: Set host_or_ip for system threads (to make other code simpler) sql/sql_show.cc: Set host_or_ip for system threads (to make other code simpler)
Diffstat (limited to 'include/thr_lock.h')
-rw-r--r--include/thr_lock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/thr_lock.h b/include/thr_lock.h
index 7459849cb04..6650d25e145 100644
--- a/include/thr_lock.h
+++ b/include/thr_lock.h
@@ -43,8 +43,8 @@ enum thr_lock_type { TL_IGNORE=-1,
*/
TL_WRITE_ALLOW_WRITE,
/*
- Write lock, but allow other threads to read / write.
- Used by ALTER TABLE in MySQL to mark to allow readers
+ Write lock, but allow other threads to read.
+ Used by ALTER TABLE in MySQL to allow readers
to use the table until ALTER TABLE is finished.
*/
TL_WRITE_ALLOW_READ,