mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
talloc: Fix exports and increment talloc version
This commit is contained in:
parent
8fb483b296
commit
6618a062a1
@ -1,5 +1,5 @@
|
||||
AC_PREREQ(2.50)
|
||||
AC_INIT(talloc, 2.0.0)
|
||||
AC_INIT(talloc, 2.0.1)
|
||||
AC_CONFIG_SRCDIR([talloc.c])
|
||||
AC_SUBST(datarootdir)
|
||||
AC_CONFIG_HEADER(config.h)
|
||||
|
@ -1,7 +1,19 @@
|
||||
# This file is autogenerated, please DO NOT EDIT
|
||||
{
|
||||
global:
|
||||
_talloc;
|
||||
_talloc_array;
|
||||
_talloc_free;
|
||||
_talloc_get_type_abort;
|
||||
_talloc_memdup;
|
||||
_talloc_move;
|
||||
_talloc_realloc;
|
||||
_talloc_realloc_array;
|
||||
_talloc_reference_loc;
|
||||
_talloc_set_destructor;
|
||||
_talloc_steal_loc;
|
||||
_talloc_zero;
|
||||
_talloc_zero_array;
|
||||
talloc_asprintf;
|
||||
talloc_asprintf_append;
|
||||
talloc_asprintf_append_buffer;
|
||||
@ -11,40 +23,32 @@
|
||||
talloc_enable_leak_report;
|
||||
talloc_enable_leak_report_full;
|
||||
talloc_enable_null_tracking;
|
||||
talloc_enable_null_tracking_no_autofree;
|
||||
talloc_find_parent_byname;
|
||||
_talloc_free;
|
||||
talloc_free_children;
|
||||
talloc_get_name;
|
||||
talloc_get_size;
|
||||
_talloc_get_type_abort;
|
||||
talloc_increase_ref_count;
|
||||
talloc_init;
|
||||
talloc_is_parent;
|
||||
_talloc_memdup;
|
||||
_talloc_move;
|
||||
talloc_named;
|
||||
talloc_named_const;
|
||||
talloc_parent;
|
||||
talloc_parent_name;
|
||||
talloc_pool;
|
||||
_talloc_realloc;
|
||||
_talloc_realloc_array;
|
||||
talloc_realloc_fn;
|
||||
talloc_reference_count;
|
||||
_talloc_reference_loc;
|
||||
talloc_reparent;
|
||||
talloc_report;
|
||||
talloc_report_depth_cb;
|
||||
talloc_report_depth_file;
|
||||
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_loc;
|
||||
talloc_strdup;
|
||||
talloc_strdup_append;
|
||||
talloc_strdup_append_buffer;
|
||||
@ -59,8 +63,6 @@
|
||||
talloc_vasprintf_append_buffer;
|
||||
talloc_version_major;
|
||||
talloc_version_minor;
|
||||
_talloc_zero;
|
||||
_talloc_zero_array;
|
||||
|
||||
local: *;
|
||||
};
|
||||
|
@ -1,15 +1,15 @@
|
||||
char *talloc_asprintf_append_buffer (char *, const char *, ...);
|
||||
char *talloc_asprintf_append (char *, const char *, ...);
|
||||
char *talloc_asprintf (const void *, const char *, ...);
|
||||
char *talloc_strdup_append_buffer (char *, const char *);
|
||||
char *talloc_strdup_append (char *, const char *);
|
||||
char *talloc_asprintf_append (char *, const char *, ...);
|
||||
char *talloc_asprintf_append_buffer (char *, const char *, ...);
|
||||
char *talloc_strdup (const void *, const char *);
|
||||
char *talloc_strndup_append_buffer (char *, const char *, size_t);
|
||||
char *talloc_strndup_append (char *, const char *, size_t);
|
||||
char *talloc_strdup_append (char *, const char *);
|
||||
char *talloc_strdup_append_buffer (char *, const char *);
|
||||
char *talloc_strndup (const void *, const char *, size_t);
|
||||
char *talloc_vasprintf_append_buffer (char *, const char *, va_list);
|
||||
char *talloc_vasprintf_append (char *, const char *, va_list);
|
||||
char *talloc_strndup_append (char *, const char *, size_t);
|
||||
char *talloc_strndup_append_buffer (char *, const char *, size_t);
|
||||
char *talloc_vasprintf (const void *, const char *, va_list);
|
||||
char *talloc_vasprintf_append (char *, const char *, va_list);
|
||||
char *talloc_vasprintf_append_buffer (char *, const char *, va_list);
|
||||
const char *talloc_get_name (const void *);
|
||||
const char *talloc_parent_name (const void *);
|
||||
const char *talloc_set_name (const void *, const char *, ...);
|
||||
@ -23,39 +23,40 @@ size_t talloc_get_size (const void *);
|
||||
size_t talloc_reference_count (const void *);
|
||||
size_t talloc_total_blocks (const void *);
|
||||
size_t talloc_total_size (const void *);
|
||||
void *_talloc_array (const void *, size_t, unsigned int, const char *);
|
||||
void *talloc_autofree_context (void);
|
||||
void *talloc_check_name (const void *, const char *);
|
||||
void *_talloc (const void *, size_t);
|
||||
void talloc_disable_null_tracking (void);
|
||||
void talloc_enable_leak_report_full (void);
|
||||
void talloc_enable_leak_report (void);
|
||||
void talloc_enable_null_tracking (void);
|
||||
void *talloc_find_parent_byname (const void *, const char *);
|
||||
void talloc_free_children (void *);
|
||||
void *_talloc_array (const void *, size_t, unsigned int, const char *);
|
||||
void *_talloc_get_type_abort (const void *, const char *, const char *);
|
||||
void *talloc_init (const char *, ...);
|
||||
void *_talloc_memdup (const void *, const void *, size_t, const char *);
|
||||
void *_talloc_move (const void *, const void *);
|
||||
void *talloc_named_const (const void *, size_t, const char *);
|
||||
void *_talloc_realloc (const void *, void *, size_t, const char *);
|
||||
void *_talloc_realloc_array (const void *, void *, size_t, unsigned int, const char *);
|
||||
void *_talloc_reference_loc (const void *, const void *, const char *);
|
||||
void *_talloc_steal_loc (const void *, const void *, const char *);
|
||||
void *_talloc_zero (const void *, size_t, const char *);
|
||||
void *_talloc_zero_array (const void *, size_t, unsigned int, const char *);
|
||||
void *talloc_autofree_context (void);
|
||||
void *talloc_check_name (const void *, const char *);
|
||||
void *talloc_find_parent_byname (const void *, const char *);
|
||||
void *talloc_init (const char *, ...);
|
||||
void *talloc_named (const void *, size_t, const char *, ...);
|
||||
void *talloc_named_const (const void *, size_t, const char *);
|
||||
void *talloc_parent (const void *);
|
||||
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_loc (const void *, const void *, const char *);
|
||||
void *talloc_reparent (const void *, const void *, const void *);
|
||||
void _talloc_set_destructor (const void *, int (*) (void *));
|
||||
void talloc_disable_null_tracking (void);
|
||||
void talloc_enable_leak_report (void);
|
||||
void talloc_enable_leak_report_full (void);
|
||||
void talloc_enable_null_tracking (void);
|
||||
void talloc_enable_null_tracking_no_autofree (void);
|
||||
void talloc_free_children (void *);
|
||||
void talloc_report (const void *, FILE *);
|
||||
void talloc_report_depth_cb (const void *, int, int, void (*) (const void *, int, int, int, void *), void *);
|
||||
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_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 *);
|
||||
|
Loading…
Reference in New Issue
Block a user