1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

Talloc doc: talloc_set_log_fn()

Documents this function.
This commit is contained in:
Pavel Březina 2012-04-16 14:47:16 +02:00 committed by Volker Lendecke
parent 73b0ed650a
commit cf7f4612b5

View File

@ -1804,6 +1804,15 @@ void talloc_enable_leak_report_full(void);
* @see talloc_get_type()
*/
void talloc_set_abort_fn(void (*abort_fn)(const char *reason));
/**
* @brief Set a logging function.
*
* @param[in] log_fn The logging function.
*
* @see talloc_set_log_stderr()
* @see talloc_set_abort_fn()
*/
void talloc_set_log_fn(void (*log_fn)(const char *message));
void talloc_set_log_stderr(void);