blob: fe54a0cfc2f45304f76ae67dec8e04c5f849b6c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* Copyright (C) 2013-2019 Argonne National Laboratory, Department of Energy,
* UChicago Argonne, LLC and The HDF Group.
* All rights reserved.
*
* The full copyright notice, including terms governing use, modification,
* and redistribution, is contained in the COPYING file that can be
* found at the root of the source code distribution tree.
*/
#ifndef MERCURY_THREAD_MUTEX_H
#define MERCURY_THREAD_MUTEX_H
#include "mercury_util_config.h"
#ifdef _WIN32
# include <windows.h>
# define HG_THREAD_MUTEX_INITIALIZER NULL
typedef CRITICAL_SECTION hg_thread_mutex_t;
#else
# include <pthread.h>
# define HG_THREAD_MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
typedef pthread_mutex_t hg_thread_mutex_t;
#endif
#ifdef __cplusplus
extern "C" {
#endif
/**
* Initialize the mutex.
*
* \param mutex [IN/OUT] pointer to mutex object
*
* \return Non-negative on success or negative on failure
*/
HG_UTIL_PUBLIC int
hg_thread_mutex_init(hg_thread_mutex_t *mutex);
/**
* Destroy the mutex.
*
* \param mutex [IN/OUT] pointer to mutex object
*
* \return Non-negative on success or negative on failure
*/
HG_UTIL_PUBLIC int
hg_thread_mutex_destroy(hg_thread_mutex_t *mutex);
/**
* Lock the mutex.
*
* \param mutex [IN/OUT] pointer to mutex object
*
* \return Non-negative on success or negative on failure
*/
static HG_UTIL_INLINE int
hg_thread_mutex_lock(hg_thread_mutex_t *mutex);
/**
* Try locking the mutex.
*
* \param mutex [IN/OUT] pointer to mutex object
*
* \return Non-negative on success or negative on failure
*/
static HG_UTIL_INLINE int
hg_thread_mutex_try_lock(hg_thread_mutex_t *mutex);
/**
* Unlock the mutex.
*
* \param mutex [IN/OUT] pointer to mutex object
*
* \return Non-negative on success or negative on failure
*/
static HG_UTIL_INLINE int
hg_thread_mutex_unlock(hg_thread_mutex_t *mutex);
/*---------------------------------------------------------------------------*/
static HG_UTIL_INLINE int
hg_thread_mutex_lock(hg_thread_mutex_t *mutex)
{
#ifdef _WIN32
EnterCriticalSection(mutex);
#else
if (pthread_mutex_lock(mutex))
return HG_UTIL_FAIL;
#endif
return HG_UTIL_SUCCESS;
}
/*---------------------------------------------------------------------------*/
static HG_UTIL_INLINE int
hg_thread_mutex_try_lock(hg_thread_mutex_t *mutex)
{
#ifdef _WIN32
if (!TryEnterCriticalSection(mutex))
return HG_UTIL_FAIL;
#else
if (pthread_mutex_trylock(mutex))
return HG_UTIL_FAIL;
#endif
return HG_UTIL_SUCCESS;
}
/*---------------------------------------------------------------------------*/
static HG_UTIL_INLINE int
hg_thread_mutex_unlock(hg_thread_mutex_t *mutex)
{
#ifdef _WIN32
LeaveCriticalSection(mutex);
#else
if (pthread_mutex_unlock(mutex))
return HG_UTIL_FAIL;
#endif
return HG_UTIL_SUCCESS;
}
#ifdef __cplusplus
}
#endif
#endif /* MERCURY_THREAD_MUTEX_H */
|