Move files to util

This commit is contained in:
o9000
2017-12-20 16:40:23 +01:00
parent 8946f93254
commit 648c7c109f
10 changed files with 9 additions and 5 deletions

15
src/util/signals.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef SIGNALS_H
#define SIGNALS_H
void init_signals();
void init_signals_postconfig();
void emit_self_restart(const char *reason);
int get_signal_pending();
void reset_signals();
void handle_sigchld_events();
extern int sigchild_pipe_valid;
extern int sigchild_pipe[2];
#endif