aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/talloc_ctx.c
AgeCommit message (Collapse)AuthorFilesLines
2010-03-29[misc] Remove whitespace from the end of the line.Holger Hans Peter Freyther1-1/+1
2010-02-20split 'libosmocore' from openbsc codebaseHarald Welte1-1/+1
This library is intended to collect all generic/common funcitionality of all Osmocom.org projects, including OpenBSC but also OsmocomBB The library currently includes the following modules: bitvec, comp128, gsm_utils, msgb, select, signal, statistics, talloc, timer, tlv_parse, linuxlist msgb allocation error debugging had to be temporarily disabled as it depends on 'debug.c' functionality which at the moment remains in OpenBSC
2009-12-24fix typo in talloc_ctx causing counters not to show up in talloc reportHarald Welte1-1/+1
2009-12-24counter: create their own talloc context for better readabilityHarald Welte1-0/+2
2009-12-24move msgb talloc context into talloc_ctx.cHarald Welte1-0/+2
This keeps the ordering right, independent of link ordering, it will ensure that the talloc dump will also catch msgb related memory leaks.
2009-08-15move talloc context creation out of on_dso / constructorsHarald Welte (local)1-0/+32
the various constructors get called in a non-obvious, linker determined order, which makes certain objects disappear from the talloc report. This change moves the talloc context creation into a new talloc_ctx.c file