mirror of
https://github.com/libretro/libretro-common.git
synced 2024-11-23 16:19:50 +00:00
134 lines
3.1 KiB
C
134 lines
3.1 KiB
C
/* Copyright (C) 2010-2017 The RetroArch team
|
|
*
|
|
* ---------------------------------------------------------------------------------------
|
|
* The following license statement only applies to this file (rsemaphore.c).
|
|
* ---------------------------------------------------------------------------------------
|
|
*
|
|
* Permission is hereby granted, free of charge,
|
|
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation the rights to
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
|
|
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#ifdef __unix__
|
|
#define _POSIX_C_SOURCE 199309
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <rthreads/rthreads.h>
|
|
#include <rthreads/rsemaphore.h>
|
|
|
|
struct ssem
|
|
{
|
|
int value;
|
|
int wakeups;
|
|
slock_t *mutex;
|
|
scond_t *cond;
|
|
};
|
|
|
|
ssem_t *ssem_new(int value)
|
|
{
|
|
ssem_t *semaphore = (ssem_t*)calloc(1, sizeof(*semaphore));
|
|
|
|
if (!semaphore)
|
|
goto error;
|
|
|
|
semaphore->value = value;
|
|
semaphore->wakeups = 0;
|
|
semaphore->mutex = slock_new();
|
|
|
|
if (!semaphore->mutex)
|
|
goto error;
|
|
|
|
semaphore->cond = scond_new();
|
|
|
|
if (!semaphore->cond)
|
|
goto error;
|
|
|
|
return semaphore;
|
|
|
|
error:
|
|
if (semaphore)
|
|
{
|
|
if (semaphore->mutex)
|
|
slock_free(semaphore->mutex);
|
|
semaphore->mutex = NULL;
|
|
free((void*)semaphore);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
void ssem_free(ssem_t *semaphore)
|
|
{
|
|
if (!semaphore)
|
|
return;
|
|
|
|
scond_free(semaphore->cond);
|
|
slock_free(semaphore->mutex);
|
|
free((void*)semaphore);
|
|
}
|
|
|
|
int ssem_get(ssem_t *semaphore)
|
|
{
|
|
int val = 0;
|
|
if (!semaphore)
|
|
return 0;
|
|
|
|
slock_lock(semaphore->mutex);
|
|
|
|
val = semaphore->value;
|
|
|
|
slock_unlock(semaphore->mutex);
|
|
|
|
return val;
|
|
}
|
|
|
|
void ssem_wait(ssem_t *semaphore)
|
|
{
|
|
if (!semaphore)
|
|
return;
|
|
|
|
slock_lock(semaphore->mutex);
|
|
semaphore->value--;
|
|
|
|
if (semaphore->value < 0)
|
|
{
|
|
do
|
|
{
|
|
scond_wait(semaphore->cond, semaphore->mutex);
|
|
}while (semaphore->wakeups < 1);
|
|
|
|
semaphore->wakeups--;
|
|
}
|
|
|
|
slock_unlock(semaphore->mutex);
|
|
}
|
|
|
|
void ssem_signal(ssem_t *semaphore)
|
|
{
|
|
if (!semaphore)
|
|
return;
|
|
|
|
slock_lock(semaphore->mutex);
|
|
semaphore->value++;
|
|
|
|
if (semaphore->value <= 0)
|
|
{
|
|
semaphore->wakeups++;
|
|
scond_signal(semaphore->cond);
|
|
}
|
|
|
|
slock_unlock(semaphore->mutex);
|
|
}
|