mirror of https://github.com/ArduPilot/ardupilot
22 lines
412 B
C
22 lines
412 B
C
|
#pragma once
|
||
|
|
||
|
#include <AP_HAL/AP_HAL_Boards.h>
|
||
|
|
||
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
||
|
#include "AP_HAL_SITL.h"
|
||
|
#include <pthread.h>
|
||
|
|
||
|
class HALSITL::Semaphore : public AP_HAL::Semaphore {
|
||
|
public:
|
||
|
Semaphore() {
|
||
|
pthread_mutex_init(&_lock, NULL);
|
||
|
}
|
||
|
bool give();
|
||
|
bool take(uint32_t timeout_ms);
|
||
|
bool take_nonblocking();
|
||
|
private:
|
||
|
pthread_mutex_t _lock;
|
||
|
};
|
||
|
#endif // CONFIG_HAL_BOARD
|
||
|
|