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

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1995 John Birrell <jb@cimlogic.com.au>.
  3.  * All rights reserved.
  4.  *
  5.  * Modified and extended by Antony T Curtis <antony.curtis@olcs.net>
  6.  * for use with OS/2.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in the
  15.  *    documentation and/or other materials provided with the distribution.
  16.  * 3. All advertising materials mentioning features or use of this software
  17.  *    must display the following acknowledgement:
  18.  * This product includes software developed by John Birrell.
  19.  * 4. Neither the name of the author nor the names of any co-contributors
  20.  *    may be used to endorse or promote products derived from this software
  21.  *    without specific prior written permission.
  22.  *
  23.  * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
  24.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  27.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  29.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  32.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33.  * SUCH DAMAGE.
  34.  *
  35.  */
  36. #include <stdlib.h>
  37. #include <errno.h>
  38. #ifdef _THREAD_SAFE
  39. int
  40. pthread_mutex_init(pthread_mutex_t * mutex,
  41.    const pthread_mutexattr_t * mutex_attr)
  42. {
  43.   (void) DosCreateMutexSem(NULL,mutex,0,0);
  44.   return (0); /* Return the completion status: */
  45. }
  46. int
  47. pthread_mutex_destroy(pthread_mutex_t * mutex)
  48. {
  49.   APIRET rc;
  50.   do
  51.   {
  52.     rc = DosCloseMutexSem(*mutex);
  53.     if (rc == 301) DosReleaseMutexSem(*mutex);
  54.   } while (rc == 301);
  55.   *mutex = 0;
  56.   return (0); /* Return the completion status: */
  57. }
  58. int
  59. pthread_mutex_lock(pthread_mutex_t * mutex)
  60. {
  61.   APIRET rc;
  62.   rc = DosRequestMutexSem(*mutex,SEM_INDEFINITE_WAIT);
  63.   if (rc)
  64.     return(EINVAL);
  65.   return (0); /* Return the completion status: */
  66. }
  67. int
  68. pthread_mutex_unlock(pthread_mutex_t * mutex)
  69. {
  70.   (void) DosReleaseMutexSem(*mutex);
  71.   return (0); /* Return the completion status: */
  72. }
  73. #endif