diff options
author | monty@mashka.mysql.fi <> | 2003-02-17 02:14:37 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-02-17 02:14:37 +0200 |
commit | 6051b2f9988f1e317be41e49c64718cc610c1260 (patch) | |
tree | 49ba5df63376ec1ba88e54e1446b29a777bba1a9 /include/my_pthread.h | |
parent | 153cefc61b15e182157ab7da9a14ab014c4f95de (diff) | |
download | mariadb-git-6051b2f9988f1e317be41e49c64718cc610c1260.tar.gz |
Fixed multi-table-delete for InnoDB tables
Novell patches
Diffstat (limited to 'include/my_pthread.h')
-rw-r--r-- | include/my_pthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h index bea6b8bef5a..574198a0645 100644 --- a/include/my_pthread.h +++ b/include/my_pthread.h @@ -430,7 +430,7 @@ struct tm *localtime_r(const time_t *clock, struct tm *res); #define pthread_kill(A,B) pthread_dummy(0) #undef pthread_detach_this_thread #define pthread_detach_this_thread() { pthread_t tmp=pthread_self() ; pthread_detach(&tmp); } -#else /* HAVE_PTHREAD_ATTR_CREATE && !HAVE_SIGWAIT */ +#elif !defined(__NETWARE__) /* HAVE_PTHREAD_ATTR_CREATE && !HAVE_SIGWAIT */ #define HAVE_PTHREAD_KILL #endif |