r10656: BIG merge from trunk. Features not copied over
[abartlet/samba.git/.git] / source3 / lib / tallocmsg.c
index 608cdad452b7717cadd35298b6369ec33a3f9220..8f03fd66ff1888749bccb9cd26598a1d8660cb83 100644 (file)
  * Respond to a POOL_USAGE message by sending back string form of memory
  * usage stats.
  **/
-void msg_pool_usage(int msg_type, pid_t src_pid,
+void msg_pool_usage(int msg_type, struct process_id src_pid,
                    void *UNUSED(buf), size_t UNUSED(len))
 {
-       char *reply;
-       TALLOC_CTX *reply_pool = talloc_init_named("msg_pool_usage");
+       off_t reply;
+       fstring reply_str;
 
        SMB_ASSERT(msg_type == MSG_REQ_POOL_USAGE);
        
        DEBUG(2,("Got POOL_USAGE\n"));
 
-       reply = talloc_describe_all(reply_pool);
+       reply = talloc_total_size(NULL);
+       fstr_sprintf(reply_str, "%ld", (long)reply);
        
        message_send_pid(src_pid, MSG_POOL_USAGE,
-                        reply, strlen(reply)+1, True);
-
-       talloc_destroy(reply_pool);
+                        reply_str, strlen(reply_str)+1, True);
 }
 
 /**