mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* thread_native.h: add rb_nativethread_self() which returns
current running native thread identifier. * thread_[pthread|win32].c: implement rb_nativethread_self(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42137 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2b1088c89f
commit
b2bcef7294
4 changed files with 22 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
Tue Jul 23 19:44:32 2013 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* thread_native.h: add rb_nativethread_self() which returns
|
||||
current running native thread identifier.
|
||||
|
||||
* thread_[pthread|win32].c: implement rb_nativethread_self().
|
||||
|
||||
Tue Jul 23 19:34:11 2013 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* thread_pthread.h, thread_win32.h: rename rb_thread_id_t to
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
|
||||
RUBY_SYMBOL_EXPORT_BEGIN
|
||||
|
||||
rb_nativethread_id_t rb_nativethread_self();
|
||||
|
||||
void rb_nativethread_lock_initialize(rb_nativethread_lock_t *lock);
|
||||
void rb_nativethread_lock_destroy(rb_nativethread_lock_t *lock);
|
||||
void rb_nativethread_lock_lock(rb_nativethread_lock_t *lock);
|
||||
|
|
|
@ -1535,4 +1535,10 @@ rb_reserved_fd_p(int fd)
|
|||
#endif
|
||||
}
|
||||
|
||||
rb_nativethread_id_t
|
||||
rb_nativethread_self(void)
|
||||
{
|
||||
return pthread_self();
|
||||
}
|
||||
|
||||
#endif /* THREAD_SYSTEM_DEPENDENT_IMPLEMENTATION */
|
||||
|
|
|
@ -766,4 +766,11 @@ rb_reserved_fd_p(int fd)
|
|||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
rb_nativethread_id_t
|
||||
rb_nativethread_self(void)
|
||||
{
|
||||
return GetCurrentThread();
|
||||
}
|
||||
|
||||
#endif /* THREAD_SYSTEM_DEPENDENT_IMPLEMENTATION */
|
||||
|
|
Loading…
Reference in a new issue