aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--thread_pthread.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index da6c9499a0..572046af74 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Feb 3 13:15:24 2010 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * thread_pthread.c: DragonFlyBSD is also the same as FreeBSD
+ on getting the stack size of the main thread.
+
Wed Feb 3 12:30:10 2010 NARUSE, Yui <naruse@ruby-lang.org>
* thread_pthread.c (ruby_init_stack): use pthread_get_attr_np
diff --git a/thread_pthread.c b/thread_pthread.c
index 14da80b9f7..d2d8b04df1 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -12,7 +12,7 @@
#ifdef THREAD_SYSTEM_DEPENDENT_IMPLEMENTATION
#include "gc.h"
-#ifdef __FreeBSD__
+#if defined(__FreeBSD__) || defined(__DragonFly)
#include <pthread_np.h>
#endif
@@ -297,10 +297,10 @@ ruby_init_stack(volatile VALUE *addr
#endif
{
size_t size = 0, space = 0;
-#ifdef __FreeBSD__
+#if defined(__FreeBSD__) || defined(__DragonFly)
pthread_attr_t attr;
if (pthread_attr_init(&attr) == 0) {
- pthread_attr_get_np(native_main_thread.id, &attr) ||
+ if (pthread_attr_get_np(native_main_thread.id, &attr) == 0)
pthread_attr_getstacksize(&attr, &size);
pthread_attr_destroy(&attr);
}