summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/talloc.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/source3/include/talloc.h b/source3/include/talloc.h
index 198a27b49b..d8a98f07e6 100644
--- a/source3/include/talloc.h
+++ b/source3/include/talloc.h
@@ -28,25 +28,10 @@
* @sa talloc.c
*/
-struct talloc_chunk {
- struct talloc_chunk *next;
- size_t size;
- void *ptr;
-};
-
-
/**
* talloc allocation pool. All allocated blocks can be freed in one go.
**/
-typedef struct {
- struct talloc_chunk *list;
- size_t total_alloc_size;
-
- /** The name recorded for this pool, if any. Should describe
- * the purpose for which it was allocated. The string is
- * allocated within the pool. **/
- char *name;
-} TALLOC_CTX;
+typedef struct talloc_ctx TALLOC_CTX;
TALLOC_CTX *talloc_init_named(char const *fmt, ...) PRINTF_ATTRIBUTE(1, 2);