aboutsummaryrefslogtreecommitdiffstats
path: root/thread_win32.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 04:35:17 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 04:35:17 +0000
commit42f0b52f771570adebbea518fa2464bd227bca99 (patch)
tree3234bc211c8ace175fee09184752e3814993b317 /thread_win32.h
parentf3945617bd2ed8f4282bc21023f0aea1aa166654 (diff)
downloadruby-42f0b52f771570adebbea518fa2464bd227bca99.tar.gz
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@14657 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_win32.h')
-rw-r--r--thread_win32.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/thread_win32.h b/thread_win32.h
index 1b4981a5e3..d4aea04f8a 100644
--- a/thread_win32.h
+++ b/thread_win32.h
@@ -26,17 +26,6 @@ typedef HANDLE rb_thread_id_t;
typedef CRITICAL_SECTION rb_thread_lock_t;
typedef struct rb_thread_cond_struct rb_thread_cond_t;
-int native_mutex_lock(rb_thread_lock_t *);
-int native_mutex_unlock(rb_thread_lock_t *);
-int native_mutex_trylock(rb_thread_lock_t *);
-void native_mutex_initialize(rb_thread_lock_t *);
-
-void native_cond_signal(rb_thread_cond_t *cond);
-void native_cond_broadcast(rb_thread_cond_t *cond);
-void native_cond_wait(rb_thread_cond_t *cond, rb_thread_lock_t *mutex);
-void native_cond_initialize(rb_thread_cond_t *cond);
-void native_cond_destroy(rb_thread_cond_t *cond);
-
typedef struct native_thread_data_struct {
HANDLE interrupt_event;
} native_thread_data_t;