talloc: update talloc.exports and talloc.signatures
authorStefan Metzmacher <metze@samba.org>
Fri, 21 Aug 2009 07:53:51 +0000 (09:53 +0200)
committerStefan Metzmacher <metze@samba.org>
Fri, 21 Aug 2009 07:58:23 +0000 (09:58 +0200)
metze

lib/talloc/talloc.exports
lib/talloc/talloc.signatures

index 2459c4821181169caca2a4d3c817fbb77db8d6ef..c1db67baaae478c537d9e68f8f9f0784c35f899e 100644 (file)
@@ -30,7 +30,6 @@
            _talloc_realloc;
            _talloc_realloc_array;
            talloc_realloc_fn;
-           _talloc_reference;
            talloc_reference_count;
            _talloc_reference_loc;
            talloc_reparent;
            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;
index 96b71f737ad889451149b8c2137a44bbfc9612f0..00fb4a3296800bfdf7798e06aee4e40052f34bb3 100644 (file)
@@ -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 *);