mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
f4fee3d90e
Fixes for building MySQL with gcc 3.0 Added SIGNED / UNSIGNED casts Fixed core dump bug in net_clear() with libmysqld. Back to using semaphores in query cache. Added 'Null' and 'Index_type' to SHOW INDEX. BUILD/FINISH.sh: Fixes for gcc 3.0 BUILD/SETUP.sh: Fixes for gcc 3.0 Docs/manual.texi: Changelog + SIGNED/UNSIGNED casts. Makefile.am: include BUILD scripts in source distribution. client/Makefile.am: Fixes for gcc 3.0 client/mysql.cc: Cleanup client/mysqldump.c: Changed 'K' to mean 'disable-keys' instead of 'no-disabled-keys' client/readline.cc: Cleanup configure.in: Include BUILD in source distrbution extra/my_print_defaults.c: Cleanup include/my_global.h: Fix for HPUX and setrlimit. Portability fix. Added macros for nice TIMESPEC usage. innobase/include/dyn0dyn.h: Fix for AIX libmysql/Makefile.shared: Added strxmov to libmysqld libmysqld/examples/Makefile.am: Fixes for gcc 3.0 libmysqld/lib_vio.c: Cleanup myisam/ft_dump.c: Portability fixes myisam/ftdefs.h: Portability fixes mysql-test/r/bdb.result: Cleanup results after adding 2 columns to SHOW KEYS mysql-test/r/bigint.result: New test for SIGNED/UNSIGNED mysql-test/r/fulltext.result: Cleanup results after adding 2 columns to SHOW KEYS mysql-test/r/heap.result: Cleanup results after adding 2 columns to SHOW KEYS mysql-test/r/innodb.result: Cleanup results after adding 2 columns to SHOW KEYS mysql-test/r/isam.result: Cleanup results after adding 2 columns to SHOW KEYS mysql-test/r/key.result: Cleanup results after adding 2 columns to SHOW KEYS mysql-test/r/myisam.result: Cleanup results after adding 2 columns to SHOW KEYS mysql-test/r/query_cache.result: Cleanup results after adding 2 columns to SHOW KEYS mysql-test/r/select.result: Cleanup results after adding 2 columns to SHOW KEYS mysql-test/r/show_check.result: Cleanup results after adding 2 columns to SHOW KEYS mysql-test/r/type_ranges.result: Cleanup results after adding 2 columns to SHOW KEYS mysql-test/t/bigint.test: New test for SIGNED/UNSIGNED mysql-test/t/key.test: New test for SIGNED/UNSIGNED mysql-test/t/query_cache.test: Test for FOUND_ROWS() sql-bench/crash-me.sh: Safety fixes sql/derror.cc: Cleanup sql/ha_berkeley.h: New test for SIGNED/UNSIGNED sql/ha_heap.h: New test for SIGNED/UNSIGNED sql/ha_innobase.cc: New test for SIGNED/UNSIGNED sql/ha_innobase.h: New test for SIGNED/UNSIGNED sql/ha_isam.h: New test for SIGNED/UNSIGNED sql/ha_myisam.cc: New test for SIGNED/UNSIGNED sql/ha_myisam.h: New test for SIGNED/UNSIGNED sql/handler.h: New test for SIGNED/UNSIGNED sql/item_func.cc: Cleanup TIMESPEC usage sql/item_func.h: Added SIGNED / UNSIGNED casts sql/lex.h: Added SIGNED / UNSIGNED casts sql/mysqld.cc: Cleanup TIMESPEC usage sql/net_pkg.cc: Cleanup sql/net_serv.cc: Fixed core dump bug in net_clear() sql/slave.cc: Cleanup sql/sql_cache.cc: Back to using semaphores sql/sql_cache.h: Back to using semaphores sql/sql_insert.cc: Cleanup TIMESPEC usage sql/sql_manager.cc: Cleanup TIMESPEC usage sql/sql_parse.cc: Cleanup sql/sql_repl.cc: Cleanup TIMESPEC usage sql/sql_show.cc: Added 'Null' and 'Index_type' to SHOW INDEX. sql/sql_table.cc: Sort keys in table in a more logical order. sql/sql_yacc.yy: Support for SIGNED/UNSIGNED casts.
95 lines
2.6 KiB
C++
95 lines
2.6 KiB
C++
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
/*
|
|
* sql_manager.cc
|
|
* This thread manages various maintenance tasks.
|
|
*
|
|
* o Flushing the tables every flush_time seconds.
|
|
* o Berkeley DB: removing unneeded log files.
|
|
*/
|
|
|
|
#include "mysql_priv.h"
|
|
#include "sql_manager.h"
|
|
|
|
ulong volatile manager_status;
|
|
bool volatile manager_thread_in_use;
|
|
|
|
pthread_t manager_thread;
|
|
pthread_mutex_t LOCK_manager;
|
|
pthread_cond_t COND_manager;
|
|
|
|
pthread_handler_decl(handle_manager,arg __attribute__((unused)))
|
|
{
|
|
int error = 0;
|
|
ulong status;
|
|
struct timespec abstime;
|
|
bool reset_flush_time = TRUE;
|
|
my_thread_init();
|
|
DBUG_ENTER("handle_manager");
|
|
|
|
pthread_detach_this_thread();
|
|
manager_thread = pthread_self();
|
|
manager_status = 0;
|
|
manager_thread_in_use = 1;
|
|
|
|
for (;;)
|
|
{
|
|
pthread_mutex_lock(&LOCK_manager);
|
|
/* XXX: This will need to be made more general to handle different
|
|
* polling needs. */
|
|
if (flush_time)
|
|
{
|
|
if (reset_flush_time)
|
|
{
|
|
set_timespec(abstime, flush_time);
|
|
reset_flush_time = FALSE;
|
|
}
|
|
while (!manager_status && !error && !abort_loop)
|
|
error = pthread_cond_timedwait(&COND_manager, &LOCK_manager, &abstime);
|
|
}
|
|
else
|
|
while (!manager_status && !error && !abort_loop)
|
|
error = pthread_cond_wait(&COND_manager, &LOCK_manager);
|
|
status = manager_status;
|
|
manager_status = 0;
|
|
pthread_mutex_unlock(&LOCK_manager);
|
|
|
|
if (abort_loop)
|
|
break;
|
|
|
|
if (error) /* == ETIMEDOUT */
|
|
{
|
|
flush_tables();
|
|
error = 0;
|
|
reset_flush_time = TRUE;
|
|
}
|
|
|
|
#ifdef HAVE_BERKELEY_DB
|
|
if (status & MANAGER_BERKELEY_LOG_CLEANUP)
|
|
{
|
|
berkeley_cleanup_log_files();
|
|
status &= ~MANAGER_BERKELEY_LOG_CLEANUP;
|
|
}
|
|
#endif
|
|
|
|
if (status)
|
|
DBUG_PRINT("error", ("manager did not handle something: %lx", status));
|
|
}
|
|
manager_thread_in_use = 0;
|
|
my_thread_end();
|
|
DBUG_RETURN(NULL);
|
|
}
|