ardupilot/libraries/AP_HAL_PX4/Semaphores.h

21 lines
408 B
C
Raw Normal View History

2015-12-19 17:35:13 -04:00
#pragma once
#include <AP_HAL/AP_HAL_Boards.h>
#if CONFIG_HAL_BOARD == HAL_BOARD_PX4
2015-12-19 17:35:13 -04:00
#include "AP_HAL_PX4.h"
#include <pthread.h>
class PX4::Semaphore : public AP_HAL::Semaphore {
public:
Semaphore() {
pthread_mutex_init(&_lock, nullptr);
2015-12-19 17:35:13 -04:00
}
bool give();
bool take(uint32_t timeout_ms);
bool take_nonblocking();
private:
pthread_mutex_t _lock;
};
#endif // CONFIG_HAL_BOARD