diff options
author | Marc Alff <marc.alff@sun.com> | 2009-11-30 17:49:15 -0700 |
---|---|---|
committer | Marc Alff <marc.alff@sun.com> | 2009-11-30 17:49:15 -0700 |
commit | f2d67abbc0fe05d0b97a63127ffc7f85c892cf98 (patch) | |
tree | 60c7ded488b2fdc27e6b1d0de6f621cf4503e7dd /mysys/my_winthread.c | |
parent | 3c11750e363da6e1017d5bc86e9e7e03b2c4e101 (diff) | |
download | mariadb-git-f2d67abbc0fe05d0b97a63127ffc7f85c892cf98.tar.gz |
WL#2360 Performance schema
Part 1: Instrumentation interface
Diffstat (limited to 'mysys/my_winthread.c')
-rw-r--r-- | mysys/my_winthread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysys/my_winthread.c b/mysys/my_winthread.c index 9e8458b0799..f3d643975b3 100644 --- a/mysys/my_winthread.c +++ b/mysys/my_winthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000 MySQL AB +/* Copyright (C) 2000 MySQL AB, 2008-2009 Sun Microsystems, Inc This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -63,8 +63,8 @@ static unsigned int __stdcall pthread_start(void *p) } -int pthread_create(pthread_t *thread_id, pthread_attr_t *attr, - pthread_handler func, void *param) +int pthread_create(pthread_t *thread_id, const pthread_attr_t *attr, + pthread_handler func, void *param) { uintptr_t handle; struct thread_start_parameter *par; |