mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_QURT: make in_main_thread const and override
This commit is contained in:
parent
9cb23f6108
commit
b7bfef3cdf
|
@ -261,7 +261,7 @@ void *Scheduler::_io_thread(void *arg)
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Scheduler::in_main_thread()
|
bool Scheduler::in_main_thread() const
|
||||||
{
|
{
|
||||||
return getpid() == _main_task_pid;
|
return getpid() == _main_task_pid;
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,7 @@ public:
|
||||||
void resume_timer_procs();
|
void resume_timer_procs();
|
||||||
void reboot(bool hold_in_bootloader);
|
void reboot(bool hold_in_bootloader);
|
||||||
|
|
||||||
bool in_main_thread();
|
bool in_main_thread() const override;
|
||||||
void system_initialized();
|
void system_initialized();
|
||||||
void hal_initialized();
|
void hal_initialized();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue