diff options
Diffstat (limited to 'innobase/include/os0thread.h')
-rw-r--r-- | innobase/include/os0thread.h | 3 |
1 files changed, 2 insertions, 1 deletions
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 |