ardupilot/libraries/AP_HAL/Semaphores.h
Peter Barker e4e453402c AP_HAL: rearrange headers for consistency
Move attribute definitions all into AP_Common, rather than being split between two files

Remove unused SITL_printf macros

Stop AP_Common including board information

Include AP_Common.h in AP_HAL::Sempahore for WARN_IF_UNUSED; this was the cause of a circular import problem fixed by other commits in this patch.
2019-02-15 08:15:45 +11:00

23 lines
568 B
C++

#pragma once
#include "AP_HAL_Namespace.h"
#include <AP_Common/AP_Common.h>
#define HAL_SEMAPHORE_BLOCK_FOREVER 0
class AP_HAL::Semaphore {
public:
virtual bool take(uint32_t timeout_ms) WARN_IF_UNUSED = 0 ;
virtual bool take_nonblocking() WARN_IF_UNUSED = 0;
// a varient that blocks forever
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-result"
virtual void take_blocking() { take(HAL_SEMAPHORE_BLOCK_FOREVER); };
#pragma GCC diagnostic pop
virtual bool give() = 0;
virtual ~Semaphore(void) {}
};