2016-09-27 11:46:23 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
2018-08-07 03:39:42 -03:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <AP_HAL/AP_HAL_Macros.h>
|
|
|
|
#include <AP_HAL/Semaphores.h>
|
|
|
|
#include "AP_HAL_VRBRAIN_Namespace.h"
|
2016-09-27 11:46:23 -03:00
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
class VRBRAIN::Semaphore : public AP_HAL::Semaphore {
|
|
|
|
public:
|
|
|
|
Semaphore() {
|
2016-10-30 02:24:21 -03:00
|
|
|
pthread_mutex_init(&_lock, nullptr);
|
2016-09-27 11:46:23 -03:00
|
|
|
}
|
|
|
|
bool give();
|
|
|
|
bool take(uint32_t timeout_ms);
|
|
|
|
bool take_nonblocking();
|
|
|
|
private:
|
|
|
|
pthread_mutex_t _lock;
|
|
|
|
};
|
2018-08-07 03:39:42 -03:00
|
|
|
|