diff options
author | unknown <greg@mysql.com> | 2003-04-24 20:48:54 -0400 |
---|---|---|
committer | unknown <greg@mysql.com> | 2003-04-24 20:48:54 -0400 |
commit | ae5e364c19dba6c87e2fed60df1ee4c417e1f893 (patch) | |
tree | c36594ab694e521b8b9f7a633e650af1857c88f4 /include/my_pthread.h | |
parent | 1a01f0ff08b2e22602605d59e009d19500f9fb75 (diff) | |
download | mariadb-git-ae5e364c19dba6c87e2fed60df1ee4c417e1f893.tar.gz |
Changes from Novell for NetWare platform
include/my_pthread.h:
Consolidated NetWare pthread_exit() changes.
mysys/mf_path.c:
NetWare needs a semicolon path delimiter.
mysys/my_pthread.c:
Consolidated NetWare pthread_exit() changes.
sql/mini_client.cc:
Modified to match my_connect().
sql/mysqld.cc:
Consolidated NetWare pthread_exit() changes.
sql/slave.cc:
Consolidated NetWare pthread_exit() changes.
sql/sql_load.cc:
Stat properites should not be checked here on NetWare.
Diffstat (limited to 'include/my_pthread.h')
-rw-r--r-- | include/my_pthread.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h index 0b41dc18fe1..4247b951d82 100644 --- a/include/my_pthread.h +++ b/include/my_pthread.h @@ -247,6 +247,11 @@ extern int my_sigwait(const sigset_t *set,int *sig); #error Requires at least rev 2 of EMX pthreads library. #endif +#ifdef __NETWARE__ +void my_pthread_exit(void *status); +#define pthread_exit(A) my_pthread_exit(A) +#endif + extern int my_pthread_getprio(pthread_t thread_id); #define pthread_key(T,V) pthread_key_t V |