aboutsummaryrefslogtreecommitdiffstats
path: root/vm_dump.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-18 06:50:41 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-18 06:50:41 +0000
commit6d2e8b0546e17bac4dc35bdf54ec19701d0d76d1 (patch)
treec0043aa8d33ded561688870e2a9494f8652a422d /vm_dump.c
parent00459aa89f82c6e7b139e7700c88d7650b01d411 (diff)
downloadruby-6d2e8b0546e17bac4dc35bdf54ec19701d0d76d1.tar.gz
vm_dump.c: check by configured result
* vm_dump.c (rb_vm_bugreport): check by configured result instead of system name for old FreeBSD. based on a patch by Steve Wills at [ruby-core:67655]. [Bug #10752] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49321 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_dump.c')
-rw-r--r--vm_dump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm_dump.c b/vm_dump.c
index 10715c985e..da2e6a951d 100644
--- a/vm_dump.c
+++ b/vm_dump.c
@@ -711,7 +711,7 @@ rb_print_backtrace(void)
#endif
}
-#ifdef __FreeBSD__
+#ifdef HAVE_LIBPROCSTAT
#include <sys/user.h>
#include <sys/sysctl.h>
#include <sys/param.h>
@@ -1033,7 +1033,7 @@ rb_vm_bugreport(const void *ctx)
}
}
#endif /* __linux__ */
-#ifdef __FreeBSD__
+#ifdef HAVE_LIBPROCSTAT
# define MIB_KERN_PROC_PID_LEN 4
int mib[MIB_KERN_PROC_PID_LEN];
struct kinfo_proc kp;