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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
|
/* librist. Copyright © 2019 SipRadius LLC. All right reserved.
* Author: Kuldeep Singh Dhaka <kuldeep@madresistor.com>
* Author: Sergio Ammirata, Ph.D. <sergio@ammirata.net>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "time-shim.h"
#include "pthread-shim.h"
#include <stdio.h>
#ifdef _WIN32
#if HAVE_PTHREADS
int pthread_cond_timedwait_ms(pthread_cond_t *cond, pthread_mutex_t *mutex, uint32_t ms)
{
timespec_t ts;
struct timeval tv;
gettimeofday(&tv, NULL);
uint64_t odd = (tv.tv_usec + (ms * 1000)) * 1000;
ts.tv_sec = tv.tv_sec + odd / 1000000000ULL;
ts.tv_nsec = odd % 1000000000ULL;
return pthread_cond_timedwait(cond, mutex, (const struct timespec *)&ts);
}
#else
#include <errno.h>
static BOOL WINAPI init_mutex_impl(PINIT_ONCE once_var, PVOID mutex, PVOID *param2) {
RIST_MARK_UNUSED(once_var);
RIST_MARK_UNUSED(param2);
if (pthread_mutex_init((pthread_mutex_t *)mutex, NULL) !=
0) {
return FALSE;
}
return TRUE;
}
int init_mutex_once(pthread_mutex_t *mutex, PINIT_ONCE once_var)
{
if (!InitOnceExecuteOnce(once_var, init_mutex_impl, mutex, NULL)) {
return -1;
}
return 0;
}
int pthread_create(pthread_t *thread, pthread_attr_t *attr, DWORD (__stdcall *start_routine)(LPVOID), void *arg)
{
(void)attr;
if (thread == NULL || start_routine == NULL) {
return 1;
}
*thread = CreateThread(NULL, 0, start_routine, arg, 0, NULL);
if (*thread == NULL) {
return 1;
}
return 0;
}
int pthread_join(pthread_t thread, void **value_ptr)
{
(void)value_ptr;
WaitForSingleObject(thread, INFINITE);
CloseHandle(thread);
return 0;
}
void pthread_exit(void *retval)
{
ExitThread(retval ? (*((DWORD*)retval)) : 0);
}
int pthread_cancel(pthread_t thread)
{
return TerminateThread(thread, 0) ? 0 : -1;
}
int pthread_detach(pthread_t thread)
{
return CloseHandle(thread) ? 0 : -1;
}
int pthread_mutex_init(pthread_mutex_t *mutex, pthread_mutexattr_t *attr)
{
(void)attr;
if (mutex == NULL) {
return 1;
}
InitializeCriticalSection(mutex);
return 0;
}
int pthread_mutex_destroy(pthread_mutex_t *mutex)
{
if (mutex == NULL) {
return 1;
}
DeleteCriticalSection(mutex);
return 0;
}
int pthread_mutex_lock(pthread_mutex_t *mutex)
{
if (mutex == NULL) {
return 1;
}
EnterCriticalSection(mutex);
return 0;
}
int pthread_mutex_unlock(pthread_mutex_t *mutex)
{
if (mutex == NULL) {
return 1;
}
LeaveCriticalSection(mutex);
return 0;
}
int pthread_cond_init(pthread_cond_t *cond, pthread_condattr_t *attr)
{
(void)attr;
if (cond == NULL) {
return 1;
}
InitializeConditionVariable(cond);
return 0;
}
int pthread_cond_destroy(pthread_cond_t *cond)
{
/* Windows does not have a destroy for conditionals */
(void)cond;
return 0;
}
int pthread_cond_timedwait_broken(pthread_cond_t *cond, pthread_mutex_t *mutex,
const timespec_t *abstime)
{
DWORD ms = INFINITE;
int64_t duration = 0;
if (cond == NULL || mutex == NULL) {
return 1;
}
if (abstime != NULL) {
duration = ((abstime->tv_sec - time(NULL)) * 1000) + (abstime->tv_nsec / 1000000);
if (RIST_UNLIKELY(duration < 0)) {
duration = 1;
}
ms = (DWORD)duration;
}
if (!SleepConditionVariableCS(cond, mutex, ms)) {
return ETIMEDOUT;
}
return 0;
}
int pthread_cond_wait(pthread_cond_t* cond, pthread_mutex_t* mutex)
{
if (cond == NULL || mutex == NULL) {
return 1;
}
return pthread_cond_timedwait_broken(cond, mutex, NULL);
}
int pthread_cond_timedwait_ms(pthread_cond_t *cond, pthread_mutex_t *mutex, uint32_t reltime_ms)
{
if (cond == NULL || mutex == NULL) {
return 1;
}
if (!SleepConditionVariableCS(cond, mutex, reltime_ms)) {
return ETIMEDOUT;
}
return 0;
}
int pthread_cond_signal(pthread_cond_t *cond)
{
if (cond == NULL) {
return 1;
}
WakeConditionVariable(cond);
return 0;
}
int pthread_cond_broadcast(pthread_cond_t *cond)
{
if (cond == NULL) {
return 1;
}
WakeAllConditionVariable(cond);
return 0;
}
int pthread_rwlock_init(pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr)
{
(void)attr;
if (rwlock == NULL) {
return 1;
}
InitializeSRWLock(&(rwlock->lock));
rwlock->exclusive = false;
return 0;
}
int pthread_rwlock_destroy(pthread_rwlock_t *rwlock)
{
(void)rwlock;
return 0;
}
int pthread_rwlock_rdlock(pthread_rwlock_t *rwlock)
{
if (rwlock == NULL) {
return 1;
}
AcquireSRWLockShared(&(rwlock->lock));
return 0;
}
int pthread_rwlock_tryrdlock(pthread_rwlock_t *rwlock)
{
if (rwlock == NULL) {
return 1;
}
return !TryAcquireSRWLockShared(&(rwlock->lock));
}
int pthread_rwlock_wrlock(pthread_rwlock_t *rwlock)
{
if (rwlock == NULL) {
return 1;
}
AcquireSRWLockExclusive(&(rwlock->lock));
rwlock->exclusive = true;
return 0;
}
int pthread_rwlock_trywrlock(pthread_rwlock_t *rwlock)
{
BOOLEAN ret;
if (rwlock == NULL) {
return 1;
}
ret = TryAcquireSRWLockExclusive(&(rwlock->lock));
if (ret) {
rwlock->exclusive = true;
}
return ret;
}
int pthread_rwlock_unlock(pthread_rwlock_t *rwlock)
{
if (rwlock == NULL) {
return 1;
}
if (rwlock->exclusive) {
rwlock->exclusive = false;
ReleaseSRWLockExclusive(&(rwlock->lock));
} else {
ReleaseSRWLockShared(&(rwlock->lock));
}
return 0;
}
/* Semaphores */
#define MAX_SEM_COUNT 32
int sem_init(sem_t *sem, int pshared, unsigned value)
{
(void)pshared;
*sem = CreateSemaphore(
NULL, // default security attributes
value, // initial count
MAX_SEM_COUNT, // maximum count
NULL); // unnamed semaphore
if (*sem != NULL) {
return 0;
} else {
errno = ENOSPC;
return -1;
}
}
int sem_wait(sem_t *sem)
{
DWORD wait_result = WaitForSingleObject(*sem, INFINITE);
switch (wait_result) {
// The semaphore object was signaled.
case WAIT_ABANDONED:
case WAIT_OBJECT_0:
return 0;
break;
case WAIT_FAILED:
errno = EINVAL;
return -1;
break;
default:
break;
}
return -1;
}
int sem_post(sem_t *sem)
{
if (!ReleaseSemaphore(*sem, 1, NULL)) {
errno = EINVAL;
return -1;
} else {
return 0;
}
}
#endif
#else
#ifdef __APPLE__
#include <sys/time.h>
#include "time-shim.h"
#endif
// This is not part of the POSIX API
// Convience function around pthread
int pthread_cond_timedwait_ms(pthread_cond_t *cond, pthread_mutex_t *mutex, uint32_t ms)
{
timespec_t ts;
struct timeval tv;
gettimeofday(&tv, NULL);
uint64_t odd = (tv.tv_usec + (ms * 1000)) * 1000;
ts.tv_sec = tv.tv_sec + odd / 1000000000ULL;
ts.tv_nsec = odd % 1000000000ULL;
return pthread_cond_timedwait(cond, mutex, (const struct timespec*)&ts);
}
#endif
|