From 651ca6553edadb2b97339fd3c112fdb6ef6c08bc Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 9 Mar 2006 17:48:41 +0000 Subject: r14079: I just found the setproctitle library from alt linux:-) - add set_title hook to the process models - use setproctitle library in process_model standard if available - the the title for the task servers and on connections metze (This used to be commit 526f20bbecc9bbd607595637c15fc4001d3f0c70) --- source4/smbd/process_thread.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source4/smbd/process_thread.c') diff --git a/source4/smbd/process_thread.c b/source4/smbd/process_thread.c index 10b7051356..bab630ef22 100644 --- a/source4/smbd/process_thread.c +++ b/source4/smbd/process_thread.c @@ -188,6 +188,11 @@ static void thread_terminate(struct event_context *event_ctx, const char *reason pthread_exit(NULL); /* thread cleanup routine will do actual cleanup */ } +/* called to set a title of a task or connection */ +static void thread_set_title(struct event_context *ev, const char *title) +{ +} + /* mutex init function for thread model */ @@ -520,6 +525,7 @@ static const struct model_ops thread_ops = { .accept_connection = thread_accept_connection, .new_task = thread_new_task, .terminate = thread_terminate, + .set_title = thread_set_title, }; /* -- cgit