add header file for osmo_daemonize()

This commit is contained in:
Harald Welte 2010-08-25 19:25:37 +02:00
parent b6cb023c7b
commit 5ea4498c28
2 changed files with 7 additions and 1 deletions

View File

@ -2,7 +2,7 @@ osmocore_HEADERS = signal.h linuxlist.h timer.h select.h msgb.h \
tlv.h bitvec.h comp128.h statistics.h gsm_utils.h utils.h \
gsmtap.h write_queue.h rsl.h gsm48.h rxlev_stat.h mncc.h \
gsm48_ie.h logging.h gsm0808.h rate_ctr.h gsmtap_util.h \
plugin.h crc16.h panic.h
plugin.h crc16.h panic.h process.h
if ENABLE_TALLOC
osmocore_HEADERS += talloc.h

View File

@ -0,0 +1,6 @@
#ifndef _OSMO_PROCESS_H
#define _OSMO_PROCESS_H
int osmo_daemonize(void);
#endif