From ec0affa97de870f3acd280afff728adccd48b2c8 Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Tue, 7 Oct 2008 23:44:59 +0000 Subject: allow threads to be named. not posix compliant. --- ot_clean.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ot_clean.c') diff --git a/ot_clean.c b/ot_clean.c index f8bb637..d991d54 100644 --- a/ot_clean.c +++ b/ot_clean.c @@ -8,6 +8,9 @@ #include #include #include +#ifdef WANT_THREAD_NAME_NP +#include +#endif /* Libowfat */ #include "byte.h" @@ -126,6 +129,9 @@ void clean_all_torrents( ) { static pthread_t thread_id; void clean_init( void ) { pthread_create( &thread_id, NULL, clean_worker, NULL ); +#ifdef WANT_THREAD_NAME_NP + pthread_set_name_np( thread_id, "opentracker (cleanup)"); +#endif } void clean_deinit( void ) { -- cgit v1.2.3