diff options
author | serg@serg.mylan <> | 2005-10-08 16:39:55 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2005-10-08 16:39:55 +0200 |
commit | e91712d9bbd43f2153ed0623a651844de45b7796 (patch) | |
tree | 5131856f24706c7b976877506a4c7f7a2615d9e6 /mysys/my_winthread.c | |
parent | b05a6d8fdadc7117e2931c66ff8a90d6bc476de0 (diff) | |
download | mariadb-git-e91712d9bbd43f2153ed0623a651844de45b7796.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; |