summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-27 05:39:27 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-27 05:39:27 +0000
commit13388ff2642e8a1b88f248c4b09a2fb8aa814a19 (patch)
tree0346ba75f9f90336944d816b4ffc226c1385846c /process.c
parent85cd4d9c5d1ab9c1f20b72aa554198ff4342ea0d (diff)
* process.c (NUM2RLIM, RLIM2NUM): Without SIZEOF_RLIM_T is not error.
fixed: [ruby-dev:25346] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/process.c b/process.c
index 6bf91f0976..cf3644c551 100644
--- a/process.c
+++ b/process.c
@@ -1952,8 +1952,6 @@ proc_setpriority(obj, which, who, prio)
#elif SIZEOF_RLIM_T == SIZEOF_LONG_LONG
# define RLIM2NUM(v) ULL2NUM(v)
# define NUM2RLIM(v) NUM2ULL(v)
-#else
-# error cannot find an integer type which size is same as rlim_t.
#endif
/*
@@ -1978,7 +1976,7 @@ proc_setpriority(obj, which, who, prio)
static VALUE
proc_getrlimit(VALUE obj, VALUE resource)
{
-#ifdef HAVE_GETRLIMIT
+#if defined(HAVE_GETRLIMIT) && defined(RLIM2NUM)
struct rlimit rlim;
rb_secure(2);
@@ -2025,7 +2023,7 @@ proc_getrlimit(VALUE obj, VALUE resource)
static VALUE
proc_setrlimit(VALUE obj, VALUE resource, VALUE rlim_cur, VALUE rlim_max)
{
-#ifdef HAVE_SETRLIMIT
+#if defined(HAVE_SETRLIMIT) && defined(NUM2RLIM)
struct rlimit rlim;
rb_secure(2);
@@ -3728,7 +3726,7 @@ Init_process()
#ifdef HAVE_SETRLIMIT
rb_define_module_function(rb_mProcess, "setrlimit", proc_setrlimit, 3);
#endif
-#ifdef HAVE_RLIM_T
+#ifdef RLIM2NUM
#ifdef RLIM_INFINITY
rb_define_const(rb_mProcess, "RLIM_INFINITY", RLIM2NUM(RLIM_INFINITY));
#endif