aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/core/application.h
blob: 266fa9bb8f6425a594e831319acf609e4cc4ba90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

/*!
 * \file application.h
 * Routines for helping with the osmocom application setup.
 */

/*! information containing the available logging subsystems */
struct log_info;

/*! one instance of a logging target (file, stderr, ...) */
struct log_target;

/*! the default logging target, logging to stderr */
extern struct log_target *osmo_stderr_target;

void osmo_init_ignore_signals(void);
int osmo_init_logging(const struct log_info *);

int osmo_daemonize(void);