diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-08-21 09:53:51 +0200 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-08-24 16:29:58 +1000 |
commit | 64e05779d2bf697b3c5f9f53234839f4f352a408 (patch) | |
tree | ac202de195f6928123be007aa10fc0b039368d8e /lib/talloc/talloc.signatures | |
parent | 6c9ace27c591e48fdffdf5add6b4e11b2f669922 (diff) | |
download | samba-64e05779d2bf697b3c5f9f53234839f4f352a408.tar.gz samba-64e05779d2bf697b3c5f9f53234839f4f352a408.tar.bz2 samba-64e05779d2bf697b3c5f9f53234839f4f352a408.zip |
talloc: update talloc.exports and talloc.signatures
metze
Diffstat (limited to 'lib/talloc/talloc.signatures')
-rw-r--r-- | lib/talloc/talloc.signatures | 6 |
1 files changed, 4 insertions, 2 deletions
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 *); |