my_winthread.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*****************************************************************************
  14. ** Simulation of posix threads calls for WIN95 and NT
  15. *****************************************************************************/
  16. /* SAFE_MUTEX will not work until the thread structure is up to date */
  17. #undef SAFE_MUTEX
  18. #include "mysys_priv.h"
  19. #if defined(THREAD) && defined(__WIN__)
  20. #include <m_string.h>
  21. #undef getpid
  22. #include <process.h>
  23. static pthread_mutex_t THR_LOCK_thread;
  24. struct pthread_map
  25. {
  26.   HANDLE pthreadself;
  27.   pthread_handler func;
  28.   void *param;
  29. };
  30. void win_pthread_init(void)
  31. {
  32.   pthread_mutex_init(&THR_LOCK_thread,MY_MUTEX_INIT_FAST);
  33. }
  34. /*
  35. ** We have tried to use '_beginthreadex' instead of '_beginthread' here
  36. ** but in this case the program leaks about 512 characters for each
  37. ** created thread !
  38. ** As we want to save the created thread handler for other threads to
  39. ** use and to be returned by pthread_self() (instead of the Win32 pseudo
  40. ** handler), we have to go trough pthread_start() to catch the returned handler
  41. ** in the new thread.
  42. */
  43. static pthread_handler_decl(pthread_start,param)
  44. {
  45.   pthread_handler func=((struct pthread_map *) param)->func;
  46.   void *func_param=((struct pthread_map *) param)->param;
  47.   my_thread_init(); /* Will always succeed in windows */
  48.   pthread_mutex_lock(&THR_LOCK_thread);   /* Wait for beginthread to return */
  49.   win_pthread_self=((struct pthread_map *) param)->pthreadself;
  50.   pthread_mutex_unlock(&THR_LOCK_thread);
  51.   free((char*) param);   /* Free param from create */
  52.   pthread_exit((void*) (*func)(func_param));
  53.   return 0;   /* Safety */
  54. }
  55. int pthread_create(pthread_t *thread_id, pthread_attr_t *attr,
  56.    pthread_handler func, void *param)
  57. {
  58.   HANDLE hThread;
  59.   struct pthread_map *map;
  60.   DBUG_ENTER("pthread_create");
  61.   if (!(map=malloc(sizeof(*map))))
  62.     DBUG_RETURN(-1);
  63.   map->func=func;
  64.   map->param=param;
  65.   pthread_mutex_lock(&THR_LOCK_thread);
  66. #ifdef __BORLANDC__
  67.   hThread=(HANDLE)_beginthread((void(_USERENTRY *)(void *)) pthread_start,
  68.        attr->dwStackSize ? attr->dwStackSize :
  69.        65535, (void*) map);
  70. #else
  71.   hThread=(HANDLE)_beginthread((void( __cdecl *)(void *)) pthread_start,
  72.        attr->dwStackSize ? attr->dwStackSize :
  73.        65535, (void*) map);
  74. #endif
  75.   DBUG_PRINT("info", ("hThread=%lu",(long) hThread));
  76.   *thread_id=map->pthreadself=hThread;
  77.   pthread_mutex_unlock(&THR_LOCK_thread);
  78.   if (hThread == (HANDLE) -1)
  79.   {
  80.     int error=errno;
  81.     DBUG_PRINT("error",
  82.        ("Can't create thread to handle request (error %d)",error));
  83.     DBUG_RETURN(error ? error : -1);
  84.   }
  85.   VOID(SetThreadPriority(hThread, attr->priority)) ;
  86.   DBUG_RETURN(0);
  87. }
  88. void pthread_exit(void *a)
  89. {
  90.   _endthread();
  91. }
  92. /* This is neaded to get the macro pthread_setspecific to work */
  93. int win_pthread_setspecific(void *a,void *b,uint length)
  94. {
  95.   memcpy(a,b,length);
  96.   return 0;
  97. }
  98. #endif