diff options
author | unknown <monty@mysql.com> | 2005-07-26 17:55:58 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-07-26 17:55:58 +0300 |
commit | 90e41facf78150df4f8d387f6d44647957c7a8a0 (patch) | |
tree | 91bfa7092c665b2c4842cc67bff19a328d434aa4 /.bzrignore | |
parent | 1f36f6f45b7984bbbd2afe94c946cc00c7fcc529 (diff) | |
download | mariadb-git-90e41facf78150df4f8d387f6d44647957c7a8a0.tar.gz |
Review fixes:
Fixed portability problem with bool in C programs
Moved close_thread_tables out from LOCK_thread_count mutex (safety fix)
my_sleep() -> pthread_cond_timedwait()
include/thr_lock.h:
bool -> my_bool (bool is not portable in C programs)
mysys/thr_lock.c:
bool -> my_bool (bool is not portable in C programs)
sql/lock.cc:
Added comment
Don't use | on bool variable
sql/mysql_priv.h:
Added comment
sql/slave.cc:
Moved close_thread_tables out from LOCK_thread_count mutex (safety fix)
sql/sql_base.cc:
Added comments
my_sleep() -> pthread_cond_timedwait() to get less code and potentitally faster loop
BitKeeper/etc/ignore:
added ac_available_languages_fragment
Diffstat (limited to '.bzrignore')
-rw-r--r-- | .bzrignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.bzrignore b/.bzrignore index 1d14c09a602..9f57a7ad7de 100644 --- a/.bzrignore +++ b/.bzrignore @@ -546,3 +546,4 @@ vio/viotest-ssl scripts/make_win_binary_distribution EXCEPTIONS-CLIENT support-files/my-innodb-heavy-4G.cnf +ac_available_languages_fragment |