AP_HAL_Empty: add check owner method

This commit is contained in:
Siddharth Purohit 2021-07-01 11:59:34 +05:30 committed by Andrew Tridgell
parent 39bd229279
commit 215c1249cb

View File

@ -8,6 +8,7 @@ public:
bool give() override;
bool take(uint32_t timeout_ms) override;
bool take_nonblocking() override;
bool check_owner() { return true; }
private:
bool _taken;
};