summaryrefslogtreecommitdiff
path: root/lib/ldb/include
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-08-09 19:40:45 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-08-09 20:14:23 +1000
commit73f0cb5278e714740d0de75e6b0d0bf4c815491a (patch)
treefa5df779ed79dbf17ff30d647963e9c98d990f0b /lib/ldb/include
parent7e562cf3eb8d8aabf9b5d62a92e67221e4f07e3a (diff)
downloadsamba-73f0cb5278e714740d0de75e6b0d0bf4c815491a.tar.gz
samba-73f0cb5278e714740d0de75e6b0d0bf4c815491a.tar.bz2
samba-73f0cb5278e714740d0de75e6b0d0bf4c815491a.zip
lib/ldb: Do not vasprintf() the tevent debug messages that will not be shown
This malloc() and free() actually shows up quite high on a call profile of provision of the AD DC. This allows the debug handler to decide if the argument list should be printed. Andrew Bartlett
Diffstat (limited to 'lib/ldb/include')
-rw-r--r--lib/ldb/include/ldb_module.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ldb/include/ldb_module.h b/lib/ldb/include/ldb_module.h
index 389e8cef71..6e14f4c3e8 100644
--- a/lib/ldb/include/ldb_module.h
+++ b/lib/ldb/include/ldb_module.h
@@ -83,6 +83,7 @@ void ldb_debug_set(struct ldb_context *ldb, enum ldb_debug_level level,
const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
void ldb_debug_add(struct ldb_context *ldb, const char *fmt, ...) PRINTF_ATTRIBUTE(2, 3);
void ldb_debug_end(struct ldb_context *ldb, enum ldb_debug_level level);
+void ldb_vdebug(struct ldb_context *ldb, enum ldb_debug_level level, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(3, 0);
#define ldb_error(ldb, ecode, reason) ldb_error_at(ldb, ecode, reason, __FILE__, __LINE__)
#define ldb_module_error(module, ecode, reason) ldb_error_at(ldb_module_get_ctx(module), ecode, reason, __FILE__, __LINE__)