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
@ -1416,6 +1416,15 @@ timer_thread_sleep(rb_global_vm_lock_t* unused)
|
|||||||
}
|
}
|
||||||
#endif /* USE_SLEEPY_TIMER_THREAD */
|
#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 *
|
static void *
|
||||||
thread_timer(void *p)
|
thread_timer(void *p)
|
||||||
{
|
{
|
||||||
@ -1423,9 +1432,7 @@ thread_timer(void *p)
|
|||||||
|
|
||||||
if (TT_DEBUG) WRITE_CONST(2, "start timer thread\n");
|
if (TT_DEBUG) WRITE_CONST(2, "start timer thread\n");
|
||||||
|
|
||||||
#if defined(__linux__) && defined(PR_SET_NAME)
|
SET_THREAD_NAME("ruby-timer-thr");
|
||||||
prctl(PR_SET_NAME, "ruby-timer-thr");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !USE_SLEEPY_TIMER_THREAD
|
#if !USE_SLEEPY_TIMER_THREAD
|
||||||
native_mutex_initialize(&timer_thread_lock);
|
native_mutex_initialize(&timer_thread_lock);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user