diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-10-19 06:29:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:01:53 -0500 |
commit | 53e30b391d6f6704d365bbf956a2aa2ef8451000 (patch) | |
tree | 06b6ee2fe49d8a3d80a32e65734ae918bd42b87c /source4/include/talloc.h | |
parent | 06fe5d6cd92bbf87f80c3df305d136760d0f91d8 (diff) | |
download | samba-53e30b391d6f6704d365bbf956a2aa2ef8451000.tar.gz samba-53e30b391d6f6704d365bbf956a2aa2ef8451000.tar.bz2 samba-53e30b391d6f6704d365bbf956a2aa2ef8451000.zip |
r3052: added talloc_zero_p() and talloc_zero_array_p() calls, for allocating zeroed memory
(This used to be commit 65b7316e9b4589b02a8bd94150ccbfe526f6d159)
Diffstat (limited to 'source4/include/talloc.h')
-rw-r--r-- | source4/include/talloc.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/include/talloc.h b/source4/include/talloc.h index 5375bf5f84..18c31c6935 100644 --- a/source4/include/talloc.h +++ b/source4/include/talloc.h @@ -34,8 +34,11 @@ typedef void TALLOC_CTX; /* useful macros for creating type checked pointers */ #define talloc(ctx, size) talloc_named_const(ctx, size, __location__) +#define talloc_zero(ctx, size) _talloc_zero(ctx, size, __location__) #define talloc_realloc(ctx, ptr, size) _talloc_realloc(ctx, ptr, size, __location__) #define talloc_p(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type) +#define talloc_zero_p(ctx, type) (type *)_talloc_zero(ctx, sizeof(type), #type) +#define talloc_zero_array_p(ctx, type, count) (type *)talloc_zero_array(ctx, sizeof(type), count, __location__) #define talloc_array_p(ctx, type, count) (type *)talloc_array(ctx, sizeof(type), count, __location__) #define talloc_realloc_p(ctx, p, type, count) (type *)talloc_realloc_array(ctx, p, sizeof(type), count, __location__) #define talloc_memdup(t, p, size) _talloc_memdup(t, p, size, __location__) @@ -76,7 +79,7 @@ void talloc_report_full(const void *ptr, FILE *f); void talloc_report(const void *ptr, FILE *f); void talloc_enable_leak_report(void); void talloc_enable_leak_report_full(void); -void *talloc_zero(const void *ctx, size_t size); +void *_talloc_zero(const void *ctx, size_t size, const char *name); void *_talloc_memdup(const void *t, const void *p, size_t size, const char *name); char *talloc_strdup(const void *t, const char *p); char *talloc_strndup(const void *t, const char *p, size_t n); @@ -85,6 +88,7 @@ char *talloc_asprintf(const void *t, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3) char *talloc_asprintf_append(char *s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3); void *talloc_array(const void *ctx, size_t el_size, unsigned count, const char *name); +void *talloc_zero_array(const void *ctx, size_t el_size, unsigned count, const char *name); void *talloc_realloc_array(const void *ctx, void *ptr, size_t el_size, unsigned count, const char *name); void *talloc_ldb_alloc(void *context, void *ptr, size_t size); |