diff options
author | monty@mashka.mysql.fi <> | 2003-01-28 08:38:28 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-01-28 08:38:28 +0200 |
commit | 689578a0997f54c590bcf4791e30710602851bc4 (patch) | |
tree | b916d4acfbe4f32ab06b052fd06c072f858bdce1 /innobase | |
parent | 1bdd1d0626fdb8f858a3c4bf82e0064ee19b042d (diff) | |
download | mariadb-git-689578a0997f54c590bcf4791e30710602851bc4.tar.gz |
Fixes for Netware
Call pthread_mutex_destroy() on not used mutex.
Changed comments in .h and .c files from // -> /* */
Added detection of mutex on which one didn't call pthread_mutex_destroy()
Fixed bug in create_tmp_field() which causes a memory overrun in queries that uses "ORDER BY constant_expression"
Added optimisation for ORDER BY NULL
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/configure.in | 20 | ||||
-rw-r--r-- | innobase/include/os0thread.h | 3 | ||||
-rw-r--r-- | innobase/os/os0sync.c | 2 | ||||
-rw-r--r-- | innobase/os/os0thread.c | 2 | ||||
-rw-r--r-- | innobase/srv/srv0srv.c | 55 | ||||
-rw-r--r-- | innobase/srv/srv0start.c | 22 | ||||
-rw-r--r-- | innobase/sync/sync0sync.c | 2 |
7 files changed, 93 insertions, 13 deletions
diff --git a/innobase/configure.in b/innobase/configure.in index 59d213fef12..29309a2c0a5 100644 --- a/innobase/configure.in +++ b/innobase/configure.in @@ -110,14 +110,14 @@ case "$target" in CFLAGS="$CFLAGS -DUNIV_INTEL_X86";; esac -AC_OUTPUT(Makefile os/Makefile ut/Makefile btr/Makefile - buf/Makefile com/Makefile data/Makefile - dict/Makefile dyn/Makefile - eval/Makefile fil/Makefile fsp/Makefile fut/Makefile - ha/Makefile ibuf/Makefile include/Makefile - lock/Makefile log/Makefile - mach/Makefile mem/Makefile mtr/Makefile odbc/Makefile - page/Makefile pars/Makefile que/Makefile - read/Makefile rem/Makefile row/Makefile - srv/Makefile sync/Makefile thr/Makefile trx/Makefile +AC_OUTPUT(Makefile os/Makefile ut/Makefile btr/Makefile dnl + buf/Makefile com/Makefile data/Makefile dnl + dict/Makefile dyn/Makefile dnl + eval/Makefile fil/Makefile fsp/Makefile fut/Makefile dnl + ha/Makefile ibuf/Makefile include/Makefile dnl + lock/Makefile log/Makefile dnl + mach/Makefile mem/Makefile mtr/Makefile odbc/Makefile dnl + page/Makefile pars/Makefile que/Makefile dnl + read/Makefile rem/Makefile row/Makefile dnl + srv/Makefile sync/Makefile thr/Makefile trx/Makefile dnl usr/Makefile) diff --git a/innobase/include/os0thread.h b/innobase/include/os0thread.h index efc8651e06d..629cfef23a8 100644 --- a/innobase/include/os0thread.h +++ b/innobase/include/os0thread.h @@ -15,9 +15,10 @@ Created 9/8/1995 Heikki Tuuri /* Maximum number of threads which can be created in the program; this is also the size of the wait slot array for MySQL threads which can wait inside InnoDB */ -#ifdef __WIN__ +#if defined(__WIN__) || defined(__NETWARE__) /* Create less event semaphores because Win 98/ME had difficult creating 40000 event semaphores */ +/* TODO: these just take a lot of memory on NetWare. should netware move up? */ #define OS_THREAD_MAX_N 1000 #else #define OS_THREAD_MAX_N 10000 diff --git a/innobase/os/os0sync.c b/innobase/os/os0sync.c index bac1f23a1af..a9127e6310a 100644 --- a/innobase/os/os0sync.c +++ b/innobase/os/os0sync.c @@ -495,6 +495,8 @@ os_fast_mutex_free( ut_a(fast_mutex); DeleteCriticalSection((LPCRITICAL_SECTION) fast_mutex); +#elif defined(__NETWARE__) || defined(SAFE_MUTEX_DETECT_DESTROY) + pthread_mutex_destroy(fast_mutex); #else UT_NOT_USED(fast_mutex); diff --git a/innobase/os/os0thread.c b/innobase/os/os0thread.c index 30404c4e66b..b0076921e43 100644 --- a/innobase/os/os0thread.c +++ b/innobase/os/os0thread.c @@ -214,6 +214,8 @@ os_thread_sleep( { #ifdef __WIN__ Sleep(tm / 1000); +#elif defined(__NETWARE__) + delay(tm / 1000); #else struct timeval t; diff --git a/innobase/srv/srv0srv.c b/innobase/srv/srv0srv.c index 61f5a847d51..c6f3bd40dfe 100644 --- a/innobase/srv/srv0srv.c +++ b/innobase/srv/srv0srv.c @@ -1700,8 +1700,63 @@ srv_general_init(void) thr_local_init(); } + +#if defined(__NETWARE__) || defined(SAFE_MUTEX_DETECT_DESTROY) +/* NetWare requires some cleanup of mutexes */ + +/************************************************************************* +Deinitializes the synchronization primitives, memory system, and the thread +local storage. */ + +void +srv_general_free(void) +/*==================*/ +{ + sync_close(); +} +#endif /* __NETWARE__ */ + + /*======================= InnoDB Server FIFO queue =======================*/ +#if defined(__NETWARE__) || defined(SAFE_MUTEX_DETECT_DESTROY) +/* NetWare requires some cleanup of mutexes */ + +/************************************************************************* +Deinitializes the server. */ + +void +srv_free(void) +/*==========*/ +{ + srv_conc_slot_t* conc_slot; + srv_slot_t* slot; + ulint i; + + for (i = 0; i < OS_THREAD_MAX_N; i++) + { + slot = srv_table_get_nth_slot(i); + os_event_free(slot->event); + } + + /* TODO: free(srv_sys->threads); */ + + for (i = 0; i < OS_THREAD_MAX_N; i++) + { + slot = srv_mysql_table + i; + os_event_free(slot->event); + } + + /* TODO: free(srv_mysql_table); */ + + for (i = 0; i < OS_THREAD_MAX_N; i++) + { + conc_slot = srv_conc_slots + i; + os_event_free(conc_slot->event); + } +} +#endif /* __NETWARE__ */ + /************************************************************************* Puts an OS thread to wait if there are too many concurrent threads (>= srv_thread_concurrency) inside InnoDB. The threads wait in a FIFO queue. */ diff --git a/innobase/srv/srv0start.c b/innobase/srv/srv0start.c index ec674b69256..65284d51b04 100644 --- a/innobase/srv/srv0start.c +++ b/innobase/srv/srv0start.c @@ -1415,6 +1415,10 @@ innobase_start_or_create_for_mysql(void) os_fast_mutex_unlock(&srv_os_test_mutex); +#if defined(__NETWARE__) || defined(SAFE_MUTEX_DETECT_DESTROY) + os_fast_mutex_free(&srv_os_test_mutex); /* all platforms? */ +#endif /* __NETWARE__ */ + if (srv_print_verbose_log) { ut_print_timestamp(stderr); fprintf(stderr, " InnoDB: Started\n"); @@ -1461,12 +1465,28 @@ innobase_shutdown_for_mysql(void) srv_conc_n_threads); } +#if defined(__NETWARE__) || defined(SAFE_MUTEX_DETECT_DESTROY) + /* + TODO: Fix this temporary solution + We are having a race condition occure with io_handler_thread threads. + When they yield in os_aio_simulated_handle during shutdown, this + thread was able to free the memory early. + */ + os_thread_yield(); + + /* TODO: Where should this be called? */ + srv_free(); + + /* TODO: Where should this be called? */ + srv_general_free(); +#endif /* TODO: We should exit the i/o-handler and other utility threads before freeing all memory. Now this can potentially cause a seg fault! */ -#ifdef NOT_WORKING_YET +#if defined(NOT_WORKING_YET) || defined(__NETWARE__) || defined(SAFE_MUTEX_DETECT_DESTROY) + /* NetWare requires this free */ ut_free_all_mem(); #endif diff --git a/innobase/sync/sync0sync.c b/innobase/sync/sync0sync.c index 376be2e723a..20d68ba5a9f 100644 --- a/innobase/sync/sync0sync.c +++ b/innobase/sync/sync0sync.c @@ -220,7 +220,7 @@ mutex_create_func( char* cfile_name, /* in: file name where created */ ulint cline) /* in: file line where created */ { -#if defined(_WIN32) && defined(UNIV_CAN_USE_X86_ASSEMBLER) +#if defined(_WIN32) && defined(UNIV_CAN_USE_X86_ASSEMBLER) && !defined(__NETWARE) mutex_reset_lock_word(mutex); #else os_fast_mutex_init(&(mutex->os_fast_mutex)); |