diff options
author | unknown <jani@ua141d10.elisa.omakaista.fi> | 2006-01-12 15:10:12 +0200 |
---|---|---|
committer | unknown <jani@ua141d10.elisa.omakaista.fi> | 2006-01-12 15:10:12 +0200 |
commit | 2946f9a64f664293010777e422e7b66058ce323a (patch) | |
tree | df4234c3a0ca83e32bcec81b0e3a16f40606c301 /include | |
parent | 2dcedd9cbc4effee5a1c7e4c8045f2e8adced065 (diff) | |
download | mariadb-git-2946f9a64f664293010777e422e7b66058ce323a.tar.gz |
NetWare specific change to increase thread stack size.
Changes to Netware specific mysqld_safe.c
include/config-netware.h:
NetWare specific change to increase thread stack size.
innobase/os/os0thread.c:
NetWare specific change to increase thread stack size.
netware/mysqld_safe.c:
NetWare specific change to make multiple mysqld_safe instances
work when called through a NCF file.
sql/mysqld.cc:
NetWare specific change to increase thread stack size.
Diffstat (limited to 'include')
-rw-r--r-- | include/config-netware.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/config-netware.h b/include/config-netware.h index e07e972ba4b..43ee05e39ee 100644 --- a/include/config-netware.h +++ b/include/config-netware.h @@ -92,6 +92,9 @@ extern "C" { /* On NetWare, stack grows towards lower address*/ #define STACK_DIRECTION -1 +/* On NetWare, we need to set stack size for threads, otherwise default 16K is used */ +#define NW_THD_STACKSIZE 65536 + /* On NetWare, to fix the problem with the deletion of open files */ #define CANT_DELETE_OPEN_FILES 1 |