ardupilot/libraries/AP_HAL_Linux/Semaphores.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
743 B
C
Raw Normal View History

#pragma once
2013-09-22 03:01:24 -03:00
#include <AP_HAL/AP_HAL_Boards.h>
#include <stdint.h>
#include <AP_HAL/AP_HAL_Macros.h>
#include <AP_HAL/Semaphores.h>
#include <pthread.h>
2013-09-22 03:01:24 -03:00
namespace Linux {
class Semaphore : public AP_HAL::Semaphore {
2013-09-22 03:01:24 -03:00
public:
2023-12-29 17:30:57 -04:00
friend class BinarySemaphore;
2018-08-19 22:09:05 -03:00
Semaphore();
bool give() override;
bool take(uint32_t timeout_ms) override;
bool take_nonblocking() override;
2018-08-19 22:09:05 -03:00
protected:
pthread_mutex_t _lock;
2013-09-22 03:01:24 -03:00
};
2023-12-29 17:30:57 -04:00
class BinarySemaphore : public AP_HAL::BinarySemaphore {
public:
BinarySemaphore(bool initial_state=false);
bool wait(uint32_t timeout_us) override;
bool wait_blocking(void) override;
void signal(void) override;
protected:
Semaphore mtx;
pthread_cond_t cond;
bool pending;
};
}