mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
89420e4b2d
This allows to terminate the flight stack nicely, ensuring it returns 0 so init system can check by return code if it terminated nicely or if it was due to a crash.
17 lines
316 B
C++
17 lines
316 B
C++
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
class HAL_Linux : public AP_HAL::HAL {
|
|
public:
|
|
HAL_Linux();
|
|
void run(int argc, char* const* argv, Callbacks* callbacks) const override;
|
|
|
|
void setup_signal_handlers() const;
|
|
|
|
static void exit_signal_handler(int);
|
|
|
|
protected:
|
|
bool _should_exit = false;
|
|
};
|