Browse Source

AP_Stats: make all semaphores recursive

the cost is very similar and this prevents an easy coding error which
can occur on less used code paths
zr-v5.1
Andrew Tridgell 5 years ago
parent
commit
e7f200f623
  1. 2
      libraries/AP_Stats/AP_Stats.h

2
libraries/AP_Stats/AP_Stats.h

@ -67,7 +67,7 @@ private:
void update_flighttime(); void update_flighttime();
void update_runtime(); void update_runtime();
HAL_Semaphore_Recursive sem; HAL_Semaphore sem;
}; };
namespace AP { namespace AP {

Loading…
Cancel
Save