summaryrefslogtreecommitdiff
path: root/intern.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-06-24 04:38:10 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-06-24 04:38:10 +0000
commitf61858b1164eab2afd67c3814b79d50a386a92c0 (patch)
tree32c889c6af8c94b35fa34616d0f0ec559826922c /intern.h
parent6a3c97169c8a671f5feda7eba2b2a7529252daf3 (diff)
thread->thred
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/intern.h b/intern.h
index aa724d0d3c..5637563f2f 100644
--- a/intern.h
+++ b/intern.h
@@ -123,17 +123,17 @@ VALUE class_new_instance _((int, VALUE*, VALUE));
VALUE f_lambda _((void));
void rb_set_end_proc _((void (*)(),VALUE));
void gc_mark_threads _((void));
-void thread_schedule _((void));
-void thread_wait_fd _((int));
-void thread_fd_writable _((int));
-int thread_alone _((void));
-void thread_sleep _((int));
-void thread_sleep_forever _((void));
-VALUE thread_create _((VALUE (*)(), void*));
-void thread_interrupt _((void));
-void thread_trap_eval _((VALUE, int));
-int thread_select();
-void thread_wait_for();
+void thred_schedule _((void));
+void thred_wait_fd _((int));
+void thred_fd_writable _((int));
+int thred_alone _((void));
+void thred_sleep _((int));
+void thred_sleep_forever _((void));
+VALUE thred_create _((VALUE (*)(), void*));
+void thred_interrupt _((void));
+void thred_trap_eval _((VALUE, int));
+int thred_select();
+void thred_wait_for();
/* file.c */
VALUE file_open _((char*, char*));
int eaccess _((char*, int));