Merge commit '430be849945688ae107b079db1e216329b1a1f06'
[osmocom-bb.git] / src / shared / libosmocore / include / osmocom / core / application.h
1 #ifndef OSMO_APPLICATION_H
2 #define OSMO_APPLICATION_H
3
4 /**
5  * Routines for helping with the application setup.
6  */
7
8 struct log_info;
9 struct log_target;
10
11 extern struct log_target *osmo_stderr_target;
12
13 void osmo_init_ignore_signals(void);
14 int osmo_init_logging(const struct log_info *);
15
16 int osmo_daemonize(void);
17
18 #endif