summaryrefslogtreecommitdiff
path: root/assoc.c
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2022-11-01 14:38:27 -0700
committerdormando <dormando@rydia.net>2022-11-01 22:22:55 -0700
commit875371a75cbf1f92350de2d1fa0fae4a35ed572b (patch)
treeed38925e6afd54c4564b330ee12b6aeb8f1c035a /assoc.c
parent5d2da18808d50705f5038f304974d99f75c30f25 (diff)
downloadmemcached-875371a75cbf1f92350de2d1fa0fae4a35ed572b.tar.gz
core: give threads unique names
allow users to differentiate thread functions externally to memcached. Useful for setting priorities or pinning threads to CPU's.
Diffstat (limited to 'assoc.c')
-rw-r--r--assoc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/assoc.c b/assoc.c
index 335bec1..8cee570 100644
--- a/assoc.c
+++ b/assoc.c
@@ -280,6 +280,7 @@ int start_assoc_maintenance_thread(void) {
fprintf(stderr, "Can't create thread: %s\n", strerror(ret));
return -1;
}
+ thread_setname(maintenance_tid, "mc-assocmaint");
return 0;
}