2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2013-09-29 01:24:55 -03:00
|
|
|
|
2014-07-06 23:03:26 -03:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_LINUX
|
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;
|
|
|
|
|
2015-10-20 18:13:25 -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
|
|
|
}
|
|
|
|
|
2015-10-20 18:13:25 -03:00
|
|
|
bool Semaphore::take(uint32_t timeout_ms)
|
2013-09-28 18:49:30 -03:00
|
|
|
{
|
|
|
|
if (timeout_ms == 0) {
|
|
|
|
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
|
|
|
}
|
2014-08-19 19:00:21 -03:00
|
|
|
uint64_t start = hal.scheduler->micros64();
|
2013-10-07 21:23:22 -03:00
|
|
|
do {
|
|
|
|
hal.scheduler->delay_microseconds(200);
|
|
|
|
if (take_nonblocking()) {
|
|
|
|
return true;
|
|
|
|
}
|
2014-08-19 19:00:21 -03:00
|
|
|
} while ((hal.scheduler->micros64() - start) < timeout_ms*1000);
|
2013-10-07 21:23:22 -03:00
|
|
|
return false;
|
2013-09-22 03:01:24 -03:00
|
|
|
}
|
|
|
|
|
2015-10-20 18:13:25 -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
|
|
|
}
|
2013-09-29 01:24:55 -03:00
|
|
|
|
|
|
|
#endif // CONFIG_HAL_BOARD
|