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

MySQL数据库

开发平台:

Visual C++

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