diff options
| author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-25 04:35:17 +0000 |
|---|---|---|
| committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-25 04:35:17 +0000 |
| commit | c80ad8b199d3e7077083e2e61d2e142f1e69e457 (patch) | |
| tree | 3234bc211c8ace175fee09184752e3814993b317 /thread_pthread.h | |
| parent | 9cd631fa82516792a1f2dea10fde5ab0ef5b9889 (diff) | |
| download | ruby-c80ad8b199d3e7077083e2e61d2e142f1e69e457.tar.gz ruby-c80ad8b199d3e7077083e2e61d2e142f1e69e457.tar.xz ruby-c80ad8b199d3e7077083e2e61d2e142f1e69e457.zip | |
* thread_pthread.c, thread_pthread.h, thread_win32.c,
thread_win32.c: make some functions static functions.
a patch from Tadashi Saito <shiba AT mail2.accsnet.ne.jp>
in [ruby-core:14407]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14657 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.h')
| -rw-r--r-- | thread_pthread.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/thread_pthread.h b/thread_pthread.h index 844de3f8e..77032b482 100644 --- a/thread_pthread.h +++ b/thread_pthread.h @@ -17,19 +17,6 @@ typedef pthread_t rb_thread_id_t; typedef pthread_mutex_t rb_thread_lock_t; typedef pthread_cond_t rb_thread_cond_t; -void native_mutex_lock(pthread_mutex_t *lock); -void native_mutex_unlock(pthread_mutex_t *lock); -void native_mutex_destroy(pthread_mutex_t *lock); -int native_mutex_trylock(pthread_mutex_t *lock); -void native_mutex_initialize(pthread_mutex_t *lock); -void native_mutex_destroy(pthread_mutex_t *lock); - -void native_cond_signal(pthread_cond_t *cond); -void native_cond_broadcast(pthread_cond_t *cond); -void native_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex); -void native_cond_initialize(pthread_cond_t *cond); -void native_cond_destroy(pthread_cond_t *cond); - typedef struct native_thread_data_struct { void *signal_thread_list; pthread_cond_t sleep_cond; |
