summaryrefslogtreecommitdiff
path: root/source4/smbd/process_thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/smbd/process_thread.c')
-rw-r--r--source4/smbd/process_thread.c6
1 files changed, 6 insertions, 0 deletions
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,
};
/*