diff options
author | unknown <serg@serg.mylan> | 2005-10-08 16:39:55 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-10-08 16:39:55 +0200 |
commit | 0f60474f290683d2fc468c0081a1058f3f152c16 (patch) | |
tree | 5131856f24706c7b976877506a4c7f7a2615d9e6 /mysys/my_winthread.c | |
parent | 970150d14e83b74e66cd61b9f77aa9c378a94ec7 (diff) | |
download | mariadb-git-0f60474f290683d2fc468c0081a1058f3f152c16.tar.gz |
pthread_handler_decl() changed to be ctags-friendly
(and contain extern "C" when necessary)
Diffstat (limited to 'mysys/my_winthread.c')
-rw-r--r-- | mysys/my_winthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_winthread.c b/mysys/my_winthread.c index eebc07df180..8aaf3b1e31c 100644 --- a/mysys/my_winthread.c +++ b/mysys/my_winthread.c @@ -51,7 +51,7 @@ void win_pthread_init(void) ** in the new thread. */ -static pthread_handler_decl(pthread_start,param) +pthread_handler_t pthread_start(void *param) { pthread_handler func=((struct pthread_map *) param)->func; void *func_param=((struct pthread_map *) param)->param; |