summaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-20 09:29:46 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-20 09:29:46 +0000
commitb13181548493e70e7894dffab3b017e07e21cc17 (patch)
tree3f213d5f67e93eb9ebf38692865f89b0608afda4 /thread.c
parentfad2f904df89195a5fcb571fdd39b8fc65862184 (diff)
downloadruby-b13181548493e70e7894dffab3b017e07e21cc17.tar.gz
ruby-b13181548493e70e7894dffab3b017e07e21cc17.tar.xz
ruby-b13181548493e70e7894dffab3b017e07e21cc17.zip
* common.mk, *.ci: renamed to *.c.
* eval_laod.c: renamed to load.c. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14364 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread.c b/thread.c
index 63f161cc5..936360d5b 100644
--- a/thread.c
+++ b/thread.c
@@ -147,7 +147,7 @@ NOINLINE(static int thread_start_func_2(rb_thread_t *th, VALUE *stack_start,
VALUE *register_stack_start));
#if defined(_WIN32)
-#include "thread_win32.ci"
+#include "thread_win32.c"
#define DEBUG_OUT() \
WaitForSingleObject(&debug_mutex, INFINITE); \
@@ -156,7 +156,7 @@ NOINLINE(static int thread_start_func_2(rb_thread_t *th, VALUE *stack_start,
ReleaseMutex(&debug_mutex);
#elif defined(HAVE_PTHREAD_H)
-#include "thread_pthread.ci"
+#include "thread_pthread.c"
#define DEBUG_OUT() \
pthread_mutex_lock(&debug_mutex); \