aboutsummaryrefslogtreecommitdiffstats
path: root/src/application.c
AgeCommit message (Collapse)AuthorFilesLines
2014-12-04fix libosmocore build for NuttX targetHarald Welte1-0/+6
this fixes some compilation issues with libosmocore under NuttX, particularly as some #defines are missing or some header files are slightly different.
2013-03-18application: don't ignore SIGHUP but do config file reopen.Harald Welte1-1/+6
2011-08-30doxygen: Add main page for all three librariesHarald Welte1-0/+35
2011-08-17some more doxygen work (include the notion of modules)Harald Welte1-0/+17
2011-06-27logging: introduce library-internal logging categoriesHarald Welte1-1/+1
We do this by using a trick: library-internal log categories use negative subsystem numbers, which are converted into positive array indexes at the time of logging. library-internal log categories need to be knwo at compile-time, while application-specified categories now are of unlimited number, as they are dynamically allocated.
2011-06-26merge process.[ch] with application.[ch]Harald Welte1-0/+53
2011-05-12app: Introduce some routines to help with application startupHolger Hans Peter Freyther1-0/+49
The plan is to collect structs and routines for application setup and remove many copies of the boilerplate code we have right now. This starts with routines to ignore certain signals and the stderr init code. Increment the age of the library because a new interface was added.