raindrops.git  about / heads / tags
real-time stats for preforking Rack servers
   commit d843802120e7cb01659b93917c29e3ba014216f1 (patch)
   parent 19af4a5 raindrops 0.20.1
     tree 1c5b479e0267d9a63a42bd552d2bc7a3630d0800
   author Eric Wong <e@80x24.org>    2023-03-09 01:50:01 +0000
committer Eric Wong <bofh@yhbt.net>  2023-06-06 06:59:20 +0000

my_fileno: drop Ruby 1.8 support and simplify

This project has been 1.9.3+ only for a long time (and likely
going 2.x+-only), so kill some code we don't need.
---
 ext/raindrops/my_fileno.h | 27 +++------------------------
 1 file changed, 3 insertions(+), 24 deletions(-)

diff --git a/ext/raindrops/my_fileno.h b/ext/raindrops/my_fileno.h
index bdf1a5f..4c8ffba 100644
--- a/ext/raindrops/my_fileno.h
+++ b/ext/raindrops/my_fileno.h
@@ -1,36 +1,15 @@
 #include <ruby.h>
-#ifdef HAVE_RUBY_IO_H
-#  include <ruby/io.h>
-#else
-#  include <stdio.h>
-#  include <rubyio.h>
-#endif
-
-#if ! HAVE_RB_IO_T
-#  define rb_io_t OpenFile
-#endif
-
-#ifdef GetReadFile
-#  define FPTR_TO_FD(fptr) (fileno(GetReadFile(fptr)))
-#else
-#  if !HAVE_RB_IO_T || (RUBY_VERSION_MAJOR == 1 && RUBY_VERSION_MINOR == 8)
-#    define FPTR_TO_FD(fptr) fileno(fptr->f)
-#  else
-#    define FPTR_TO_FD(fptr) fptr->fd
-#  endif
-#endif
+#include <ruby/io.h>
 
 static int my_fileno(VALUE io)
 {
 	rb_io_t *fptr;
-	int fd;
 
 	if (TYPE(io) != T_FILE)
 		io = rb_convert_type(io, T_FILE, "IO", "to_io");
 	GetOpenFile(io, fptr);
-	fd = FPTR_TO_FD(fptr);
 
-	if (fd < 0)
+	if (fptr->fd < 0)
 		rb_raise(rb_eIOError, "closed stream");
-	return fd;
+	return fptr->fd;
 }


glossary
--------
Commit objects reference one tree, and zero or more parents.

Single parent commits can typically generate a patch in
unified diff format via `git format-patch'.

Multiple parents means the commit is a merge.

Root commits have no ancestor.  Note that it is
possible to have multiple root commits when merging independent histories.

Every commit references one top-level tree object.

git clone http://yhbt.net/raindrops.git