From 64e05779d2bf697b3c5f9f53234839f4f352a408 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 21 Aug 2009 09:53:51 +0200 Subject: talloc: update talloc.exports and talloc.signatures metze --- lib/talloc/talloc.exports | 6 ++++-- lib/talloc/talloc.signatures | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/talloc/talloc.exports b/lib/talloc/talloc.exports index 2459c48211..c1db67baaa 100644 --- a/lib/talloc/talloc.exports +++ b/lib/talloc/talloc.exports @@ -30,7 +30,6 @@ _talloc_realloc; _talloc_realloc_array; talloc_realloc_fn; - _talloc_reference; talloc_reference_count; _talloc_reference_loc; talloc_reparent; @@ -40,10 +39,11 @@ talloc_report_full; talloc_set_abort_fn; _talloc_set_destructor; + talloc_set_log_fn; + talloc_set_log_stderr; talloc_set_name; talloc_set_name_const; talloc_show_parents; - _talloc_steal; _talloc_steal_loc; talloc_strdup; talloc_strdup_append; @@ -57,6 +57,8 @@ talloc_vasprintf; talloc_vasprintf_append; talloc_vasprintf_append_buffer; + talloc_version_major; + talloc_version_minor; _talloc_zero; _talloc_zero_array; talloc_free; diff --git a/lib/talloc/talloc.signatures b/lib/talloc/talloc.signatures index 96b71f737a..00fb4a3296 100644 --- a/lib/talloc/talloc.signatures +++ b/lib/talloc/talloc.signatures @@ -17,6 +17,8 @@ int _talloc_free (void *, const char *); int talloc_increase_ref_count (const void *); int talloc_is_parent (const void *, const void *); int talloc_unlink (const void *, void *); +int talloc_version_major (void); +int talloc_version_minor (void); size_t talloc_get_size (const void *); size_t talloc_reference_count (const void *); size_t talloc_total_blocks (const void *); @@ -42,7 +44,6 @@ void *talloc_pool (const void *, size_t); void *_talloc_realloc_array (const void *, void *, size_t, unsigned int, const char *); void *_talloc_realloc (const void *, void *, size_t, const char *); void *talloc_realloc_fn (const void *, void *, size_t); -void *_talloc_reference (const void *, const void *); void *_talloc_reference_loc (const void *, const void *, const char *); void *talloc_reparent (const void *, const void *, const void *); void talloc_report (const void *, FILE *); @@ -51,9 +52,10 @@ void talloc_report_depth_file (const void *, int, int, FILE *); void talloc_report_full (const void *, FILE *); void talloc_set_abort_fn (void (*) (const char *)); void _talloc_set_destructor (const void *, int (*) (void *)); +void talloc_set_log_fn (void (*) (const char *)); +void talloc_set_log_stderr (void); void talloc_set_name_const (const void *, const char *); void talloc_show_parents (const void *, FILE *); -void *_talloc_steal (const void *, const void *); void *_talloc_steal_loc (const void *, const void *, const char *); void *_talloc_zero_array (const void *, size_t, unsigned int, const char *); void *_talloc_zero (const void *, size_t, const char *); -- cgit