aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-19 18:43:24 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-19 18:43:24 +0000
commit7e9c25d0768f6bf897db31e2302ee573e3ef2350 (patch)
tree3afe87bf813168b07b3e79889f8a9098aa348ff1
parentf4a8db647ae66621f5d37402f5a11a3d57c69bb0 (diff)
downloadruby-7e9c25d0768f6bf897db31e2302ee573e3ef2350.tar.gz
* thread_pthread.c: use #ifdef, not #if.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36471 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--thread_pthread.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8d3f4a35a3..aad25d44ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jul 20 03:42:54 2012 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * thread_pthread.c: use #ifdef, not #if.
+
Thu Jul 19 15:08:40 2012 Koichi Sasada <ko1@atdot.net>
* thread.c (rb_thread_s_control_interrupt,
diff --git a/thread_pthread.c b/thread_pthread.c
index 9075314135..5d24029c56 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -24,7 +24,7 @@
#elif HAVE_SYS_FCNTL_H
#include <sys/fcntl.h>
#endif
-#if HAVE_SYS_PRCTL_H
+#ifdef HAVE_SYS_PRCTL_H
#include <sys/prctl.h>
#endif
#if defined(__native_client__) && defined(NACL_NEWLIB)
@@ -1430,7 +1430,7 @@ ruby_stack_overflowed_p(const rb_thread_t *th, const void *addr)
int
rb_reserved_fd_p(int fd)
{
-#if USE_SLEEPY_TIMER_THRAED
+#ifdef USE_SLEEPY_TIMER_THRAED
if (fd == timer_thread_pipe[0] ||
fd == timer_thread_pipe[1]) {
return 1;