2020-07-26 07:58:15 +00:00
|
|
|
#ifndef OD_SIGNAL_HANDLER
|
|
|
|
#define OD_SIGNAL_HANDLER
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <machinarium.h>
|
|
|
|
#include <kiwi.h>
|
|
|
|
#include <odyssey.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
od_system_signal_handler(void *arg);
|
|
|
|
|
2020-11-23 09:13:28 +00:00
|
|
|
void
|
|
|
|
od_system_shutdown(od_system_t *system, od_instance_t *instance);
|
|
|
|
|
2020-07-26 07:58:15 +00:00
|
|
|
#endif /* OD_SIGNAL_HANDLER */
|