1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00
Andrew Tridgell b07e4933b7 talloc: added talloc_stackframe_exists()
This can be used to tell if a talloc stackframe is currently
available. Callers can use this to decide if they will use
talloc_tos() or instead use an alternative strategy. This gives us a
way to safely have calls to talloc_tos() in common code that may end
up in external libraries, as long as all talloc_tos() calls in these
pieces of common code check first that a stackframe is available.
2011-06-17 15:25:42 +10:00
..
2010-11-15 01:25:06 +00:00
2011-03-01 04:32:12 +01:00
2008-10-14 02:16:27 +02:00
2009-09-27 17:37:53 +02:00
2009-09-27 17:37:53 +02:00
2008-10-12 16:27:00 +02:00
2008-10-12 16:27:00 +02:00
2008-10-18 15:49:11 +02:00
2009-11-04 14:58:24 +11:00
2011-02-28 16:40:20 +01:00
2011-02-28 16:40:20 +01:00
2011-02-10 06:51:07 +01:00
2011-06-06 12:26:11 +10:00
2011-06-06 12:26:11 +10:00

This directory contains libutil (until we can think of a better name)

The idea is that this library contains simple but useful data structures 
and support functions that are generally useful; not just for Samba but for 
other projects as well. Functions here should not depend on any external 
libraries, just on libc (perhaps partially provided by libreplace).