12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #include "semaphore_posix.h"
- #if defined(UNIX_ENABLED) || defined(PTHREAD_ENABLED)
- #include "core/os/memory.h"
- #include <errno.h>
- #include <stdio.h>
- Error SemaphorePosix::wait() {
- while (sem_wait(&sem)) {
- if (errno == EINTR) {
- errno = 0;
- continue;
- } else {
- perror("sem waiting");
- return ERR_BUSY;
- }
- }
- return OK;
- }
- Error SemaphorePosix::post() {
- return (sem_post(&sem) == 0) ? OK : ERR_BUSY;
- }
- int SemaphorePosix::get() const {
- int val;
- sem_getvalue(&sem, &val);
- return val;
- }
- Semaphore *SemaphorePosix::create_semaphore_posix() {
- return memnew(SemaphorePosix);
- }
- void SemaphorePosix::make_default() {
- create_func = create_semaphore_posix;
- }
- SemaphorePosix::SemaphorePosix() {
- int r = sem_init(&sem, 0, 0);
- if (r != 0)
- perror("sem creating");
- }
- SemaphorePosix::~SemaphorePosix() {
- sem_destroy(&sem);
- }
- #endif
|