From 4464bbbd81b651697078d3caaf820901bc3293e7 Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 27 Dec 2004 05:39:27 +0000 Subject: * process.c (NUM2RLIM, RLIM2NUM): Without SIZEOF_RLIM_T is not error. fixed: [ruby-dev:25346] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- process.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'process.c') diff --git a/process.c b/process.c index 6bf91f097..cf3644c55 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 -- cgit