2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2013-09-29 01:24:55 -03:00
|
|
|
|
2013-09-22 03:01:24 -03:00
|
|
|
#include "Semaphores.h"
|
|
|
|
|
2013-09-28 18:49:30 -03:00
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
2013-09-22 03:01:24 -03:00
|
|
|
using namespace Linux;
|
|
|
|
|
2018-08-19 22:09:05 -03:00
|
|
|
// construct a semaphore
|
|
|
|
Semaphore::Semaphore()
|
|
|
|
{
|
|
|
|
pthread_mutexattr_t attr;
|
|
|
|
pthread_mutexattr_init(&attr);
|
|
|
|
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
|
|
|
|
pthread_mutex_init(&_lock, &attr);
|
|
|
|
}
|
|
|
|
|
2016-05-17 23:26:57 -03:00
|
|
|
bool Semaphore::give()
|
2013-09-28 18:49:30 -03:00
|
|
|
{
|
|
|
|
return pthread_mutex_unlock(&_lock) == 0;
|
2013-09-22 03:01:24 -03:00
|
|
|
}
|
|
|
|
|
2016-05-17 23:26:57 -03:00
|
|
|
bool Semaphore::take(uint32_t timeout_ms)
|
2013-09-28 18:49:30 -03:00
|
|
|
{
|
2017-04-28 21:07:05 -03:00
|
|
|
if (timeout_ms == HAL_SEMAPHORE_BLOCK_FOREVER) {
|
2013-09-28 18:49:30 -03:00
|
|
|
return pthread_mutex_lock(&_lock) == 0;
|
|
|
|
}
|
2013-10-07 21:23:22 -03:00
|
|
|
if (take_nonblocking()) {
|
|
|
|
return true;
|
2013-09-28 18:49:30 -03:00
|
|
|
}
|
2015-11-19 23:10:58 -04:00
|
|
|
uint64_t start = AP_HAL::micros64();
|
2013-10-07 21:23:22 -03:00
|
|
|
do {
|
|
|
|
hal.scheduler->delay_microseconds(200);
|
|
|
|
if (take_nonblocking()) {
|
|
|
|
return true;
|
|
|
|
}
|
2015-11-19 23:10:58 -04:00
|
|
|
} while ((AP_HAL::micros64() - start) < timeout_ms*1000);
|
2013-10-07 21:23:22 -03:00
|
|
|
return false;
|
2013-09-22 03:01:24 -03:00
|
|
|
}
|
|
|
|
|
2016-05-17 23:26:57 -03:00
|
|
|
bool Semaphore::take_nonblocking()
|
2013-09-28 18:49:30 -03:00
|
|
|
{
|
|
|
|
return pthread_mutex_trylock(&_lock) == 0;
|
2013-09-22 03:01:24 -03:00
|
|
|
}
|
2018-08-19 22:09:05 -03:00
|
|
|
|