diff options
author | unknown <monty@tik.mysql.fi> | 2001-09-04 16:17:31 +0300 |
---|---|---|
committer | unknown <monty@tik.mysql.fi> | 2001-09-04 16:17:31 +0300 |
commit | f736e3e1d25c492cc4eaa1aeb52bf369b7a84d33 (patch) | |
tree | c653dbc3fd65d1a1913a422290369a97d6a62004 /include | |
parent | 30774b35493d3ad14ee40b73d4b9ffff51dd6cd1 (diff) | |
download | mariadb-git-f736e3e1d25c492cc4eaa1aeb52bf369b7a84d33.tar.gz |
Portability fix
Diffstat (limited to 'include')
-rw-r--r-- | include/my_pthread.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h index 79baa7a53e3..c2c671ae28a 100644 --- a/include/my_pthread.h +++ b/include/my_pthread.h @@ -146,6 +146,7 @@ int pthread_mutex_destroy (pthread_mutex_t *); #define pthread_mutex_destroy(A) DeleteCriticalSection(A) #define my_pthread_setprio(A,B) SetThreadPriority(GetCurrentThread(), (B)) #define pthread_kill(A,B) pthread_dummy(0) +#define pthread_exit(A) pthread_dummy() #endif /* OS2 */ /* Dummy defines for easier code */ |