summaryrefslogtreecommitdiff
path: root/mysys/my_winthread.c
diff options
context:
space:
mode:
authorserg@serg.mylan <>2005-10-08 16:39:55 +0200
committerserg@serg.mylan <>2005-10-08 16:39:55 +0200
commite91712d9bbd43f2153ed0623a651844de45b7796 (patch)
tree5131856f24706c7b976877506a4c7f7a2615d9e6 /mysys/my_winthread.c
parentb05a6d8fdadc7117e2931c66ff8a90d6bc476de0 (diff)
downloadmariadb-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.c2
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;