diff options
author | unknown <kostja@bodhi.(none)> | 2007-08-15 17:43:08 +0400 |
---|---|---|
committer | unknown <kostja@bodhi.(none)> | 2007-08-15 17:43:08 +0400 |
commit | c514373cf306e2f3dcd5a8e3ee84d4001bb1f7f4 (patch) | |
tree | 0f4ea9d823335095b2d13f142391ac69213c2e77 /sql/lock.cc | |
parent | 2afee225ca5d7bc84564ab5c4bc5b226835d6c82 (diff) | |
download | mariadb-git-c514373cf306e2f3dcd5a8e3ee84d4001bb1f7f4.tar.gz |
Fix doxygen warnings.
client/mysqldump.c:
Fix doxygen warnings
mysys/test_charset.c:
Fix doxygen warnings
sql/event_db_repository.cc:
Fix doxygen warnings
sql/events.cc:
Fix doxygen warnings
sql/events.h:
Fix doxygen warnings
sql/item_create.cc:
Fix doxygen warnings, style.
sql/item_create.h:
Fix coding style.
sql/item_subselect.cc:
Fix doxygen warnings
sql/lock.cc:
Fix doxygen warnings
sql/sp.cc:
Fix doxygen warnings
sql/sp_head.h:
Fix doxygen warnings
sql/sql_analyse.cc:
Fix doxygen warnings
sql/sql_analyse.h:
Fix doxygen warnings
sql/sql_base.cc:
Fix doxygen warnings
sql/sql_db.cc:
Fix doxygen warnings
sql/sql_lex.cc:
Fix doxygen warnings
sql/sql_lex.h:
Fix doxygen warnings
sql/sql_parse.cc:
Fix doxygen warnings
sql/sql_plugin.cc:
Fix doxygen warnings
sql/sql_prepare.cc:
Fix doxygen warnings
sql/sql_show.cc:
Fix doxygen warnings
sql/sql_trigger.cc:
Fix doxygen warnings
sql/sql_update.cc:
Fix doxygen warnings
sql/table.h:
Fix doxygen warnings
Diffstat (limited to 'sql/lock.cc')
-rw-r--r-- | sql/lock.cc | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/sql/lock.cc b/sql/lock.cc index 20fb7d73c1c..8b98c2303a8 100644 --- a/sql/lock.cc +++ b/sql/lock.cc @@ -472,6 +472,9 @@ void mysql_unlock_read_tables(THD *thd, MYSQL_LOCK *sql_lock) unlock_external() we call handler::external_lock(F_UNLCK) only if table->current_lock is not F_UNLCK. + @param thd thread context + @param locked list of locked tables + @param table the table to unlock @param always_unlock specify explicitly if the legacy side effect is desired. */ @@ -1174,8 +1177,9 @@ bool lock_table_names_exclusively(THD *thd, TABLE_LIST *table_list) /** @brief Test is 'table' is protected by an exclusive name lock. - @param[in] thd The current thread handler - @param[in] table Table container containing the single table to be tested + @param[in] thd The current thread handler + @param[in] table_list Table container containing the single table to be + tested @note Needs to be protected by LOCK_open mutex. @@ -1201,8 +1205,9 @@ is_table_name_exclusively_locked_by_this_thread(THD *thd, /** @brief Test is 'table key' is protected by an exclusive name lock. - @param[in] thd The current thread handler. - @param[in] table Table container containing the single table to be tested. + @param[in] thd The current thread handler. + @param[in] key + @param[in] key_length @note Needs to be protected by LOCK_open mutex |