summaryrefslogtreecommitdiffstats
path: root/src/thread.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-11-26 14:31:14 -0500
committerTavian Barnes <tavianator@tavianator.com>2024-11-27 21:03:36 -0500
commitf05d65e5cf4b376a6bf1eeed17356f8e7767b389 (patch)
tree120367d126dfc7601dcb97abc699ffa4463be641 /src/thread.h
parentaecdabb625841052a68fd3b5510c56b138693c9a (diff)
downloadbfs-f05d65e5cf4b376a6bf1eeed17356f8e7767b389.tar.xz
thread: New thread_setname() function
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/thread.h b/src/thread.h
index 7d12468..3dd8422 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -22,6 +22,11 @@ typedef void *thread_fn(void *arg);
int thread_create(pthread_t *thread, const pthread_attr_t *attr, thread_fn *fn, void *arg);
/**
+ * Set the name of a thread.
+ */
+void thread_setname(pthread_t thread, const char *name);
+
+/**
* Wrapper for pthread_join().
*/
void thread_join(pthread_t thread, void **ret);