aboutsummaryrefslogtreecommitdiffstats
path: root/src/init.c
AgeCommit message (Collapse)AuthorFilesLines
2017-11-13Add SPDX-License-Identifier to all source filesHarald Welte1-0/+2
Change-Id: I9f2bc8c5d8a2c0bb0dd6caa4de5e2cb11be210e7
2011-07-18talloc: revert to use talloc inside libosmocoreHarald Welte1-1/+1
It's not a good idea to confuse the two changes with each other. Moving the Abis part into a separate library is independent from the question whether we have talloc inside libosmocore or use a stand-alone talloc library.
2011-07-05logging: use new harald's logging infrastructure in libosmocorePablo Neira Ayuso1-43/+1
I can send patches to improve it later, better not to waste much time at it by now so port libosmo-abis upon it.
2011-06-12src: add support for logging infrastructure in libosmo-abisPablo Neira Ayuso1-0/+44
This patch uses the new libosmocore logging infrastructure that allows to invoke log_init(&my_log_info) multiple times so we can register categories from libraries and applications.
2011-06-07src: add libosmo_abis_init(void *ctx) to set the talloc contextPablo Neira Ayuso1-0/+27
This function is called during initialization, so we can set what's the talloc context for the application and the library.