diff options
author | Tim Potter <tpot@samba.org> | 2003-04-07 06:13:36 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-04-07 06:13:36 +0000 |
commit | 25b1c37f6f67570dcfaff6081a74114d172dde1b (patch) | |
tree | 63fda30a603d9de9419dabb814be9ddc38c08ee8 /source3/smbd | |
parent | 7ba4758b41ddd6cd17f85b32aa7de6dfd77147ca (diff) | |
download | samba-25b1c37f6f67570dcfaff6081a74114d172dde1b.tar.gz samba-25b1c37f6f67570dcfaff6081a74114d172dde1b.tar.bz2 samba-25b1c37f6f67570dcfaff6081a74114d172dde1b.zip |
Remove duplicate "tallocdump" message from tdb messaging system. The
same functionality exists as "pool-usage".
Move initialisation of this and dmalloc messages inside message_init().
(This used to be commit af6ecafcbbf65dbedc49b3a86da39ce608bdadac)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/server.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index ae587ea251..8ce20c87a4 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -501,25 +501,6 @@ BOOL reload_services(BOOL test) return(ret); } -/******************************************************************* - Print out all talloc memory info. -********************************************************************/ - -void return_all_talloc_info(int msg_type, pid_t src_pid, void *buf, size_t len) -{ - TALLOC_CTX *ctx = talloc_init("info context"); - char *info = NULL; - - if (!ctx) - return; - - info = talloc_describe_all(ctx); - if (info) - DEBUG(10,(info)); - message_send_pid(src_pid, MSG_TALLOC_USAGE, info, info ? strlen(info) + 1 : 0, True); - talloc_destroy(ctx); -} - #if DUMP_CORE /******************************************************************* prepare to dump a core file - carefully! @@ -821,10 +802,6 @@ static BOOL init_structs(void ) if (!message_init()) exit(1); - register_msg_pool_usage(); - register_dmalloc_msgs(); - message_register(MSG_REQ_TALLOC_USAGE, return_all_talloc_info); - if (!print_backend_init()) exit(1); |