mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
thread_pthread.c: set thread name
* thread_pthread.c (thread_timer): set timer thread name on OSX too. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43128 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0b991b6579
commit
09c96a7858
1 changed files with 10 additions and 3 deletions
|
@ -1416,6 +1416,15 @@ timer_thread_sleep(rb_global_vm_lock_t* unused)
|
|||
}
|
||||
#endif /* USE_SLEEPY_TIMER_THREAD */
|
||||
|
||||
#if defined(__linux__) && defined(PR_SET_NAME)
|
||||
# define SET_THREAD_NAME(name) prctl(PR_SET_NAME, name)
|
||||
#elif defined(__APPLE__)
|
||||
/* pthread_setname_np() on Darwin does not have target thread argument */
|
||||
# define SET_THREAD_NAME(name) pthread_setname_np(name)
|
||||
#else
|
||||
# define SET_THREAD_NAME(name) (void)0
|
||||
#endif
|
||||
|
||||
static void *
|
||||
thread_timer(void *p)
|
||||
{
|
||||
|
@ -1423,9 +1432,7 @@ thread_timer(void *p)
|
|||
|
||||
if (TT_DEBUG) WRITE_CONST(2, "start timer thread\n");
|
||||
|
||||
#if defined(__linux__) && defined(PR_SET_NAME)
|
||||
prctl(PR_SET_NAME, "ruby-timer-thr");
|
||||
#endif
|
||||
SET_THREAD_NAME("ruby-timer-thr");
|
||||
|
||||
#if !USE_SLEEPY_TIMER_THREAD
|
||||
native_mutex_initialize(&timer_thread_lock);
|
||||
|
|
Loading…
Reference in a new issue