diff options
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/tallocmsg.c | 6 |
1 files changed, 5 insertions, 1 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); } /** |