summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-19 07:27:26 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-19 07:27:26 +0000
commitb1c03685bc8cb5eda9681e10d099764941a2da38 (patch)
treeaca1eca32c68a630eed985d49c025c90b0f0a2fb /io.c
parentbd793165aec8d9404e0e9d82ce9333d7f3208e3b (diff)
* io.c (UPDATE_MAXFD): removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c18
1 files changed, 7 insertions, 11 deletions
diff --git a/io.c b/io.c
index f53c5daf53..a78af6f670 100644
--- a/io.c
+++ b/io.c
@@ -151,14 +151,10 @@ struct argf {
};
static int max_file_descriptor = NOFILE;
-#define UPDATE_MAXFD(fd) \
- do { \
- if (max_file_descriptor < (fd)) max_file_descriptor = (fd); \
- } while (0)
void
rb_update_max_fd(int fd)
{
- UPDATE_MAXFD(fd);
+ if (max_file_descriptor < (fd)) max_file_descriptor = (fd);
}
#define argf_of(obj) (*(struct argf *)DATA_PTR(obj))
@@ -531,7 +527,7 @@ ruby_dup(int orig)
rb_sys_fail(0);
}
}
- UPDATE_MAXFD(fd);
+ rb_update_max_fd(fd);
return fd;
}
@@ -4622,7 +4618,7 @@ rb_sysopen(VALUE fname, int oflags, mode_t perm)
rb_sys_fail(RSTRING_PTR(fname));
}
}
- UPDATE_MAXFD(fd);
+ rb_update_max_fd(fd);
return fd;
}
@@ -4915,8 +4911,8 @@ rb_pipe(int *pipes)
}
}
if (ret == 0) {
- UPDATE_MAXFD(pipes[0]);
- UPDATE_MAXFD(pipes[1]);
+ rb_update_max_fd(pipes[0]);
+ rb_update_max_fd(pipes[1]);
}
return ret;
}
@@ -6540,7 +6536,7 @@ rb_io_initialize(int argc, VALUE *argv, VALUE io)
#else
if (fstat(fd, &st) == -1) rb_sys_fail(0);
#endif
- UPDATE_MAXFD(fd);
+ rb_update_max_fd(fd);
#if defined(HAVE_FCNTL) && defined(F_GETFL)
ofmode = rb_io_oflags_fmode(oflags);
if (NIL_P(vmode)) {
@@ -7695,7 +7691,7 @@ io_cntl(int fd, int cmd, long narg, int io_p)
retval = (int)rb_thread_io_blocking_region(nogvl_io_cntl, &arg, fd);
#if defined(F_DUPFD)
if (!io_p && retval != -1 && cmd == F_DUPFD) {
- UPDATE_MAXFD(retval);
+ rb_update_max_fd(retval);
}
#endif