diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/tallocmsg.c | 6 | ||||
-rw-r--r-- | source3/utils/smbcontrol.c | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/source3/lib/tallocmsg.c b/source3/lib/tallocmsg.c index e98e457880..a0987aba77 100644 --- a/source3/lib/tallocmsg.c +++ b/source3/lib/tallocmsg.c @@ -30,9 +30,13 @@ * Respond to a POOL_USAGE message by sending back string form of memory * usage stats. **/ -void msg_pool_usage(int msg_type, pid_t pid, void *buf, size_t len) +void msg_pool_usage(int msg_type, pid_t src_pid, void *buf, size_t len) { + char *reply = "no memory usage info yet"; + DEBUG(2,("Got POOL_USAGE\n")); + message_send_pid(src_pid, MSG_POOL_USAGE, + reply, strlen(reply)+1, True); } /** diff --git a/source3/utils/smbcontrol.c b/source3/utils/smbcontrol.c index 4f89ae37b5..9be34b132d 100644 --- a/source3/utils/smbcontrol.c +++ b/source3/utils/smbcontrol.c @@ -149,7 +149,8 @@ void profilelevel_function(int msg_type, pid_t src, void *buf, size_t len) **/ static void pool_usage_cb(int msg_type, pid_t src_pid, void *buf, size_t len) { - printf("Got POOL_USAGE reply from %u\n", (unsigned int) src_pid); + printf("Got POOL_USAGE reply from pid%u:\n%.*s\n", + (unsigned int) src_pid, (int) len, (const char *) buf); } |