From eb5a52e0706c7321eaf04f1c3240618532db8ca3 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 23 Jul 2003 09:26:53 +0000 Subject: * ext/io/wait: imported. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4124 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/io/wait/lib/nonblock.rb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ext/io/wait/lib/nonblock.rb (limited to 'ext/io/wait/lib') diff --git a/ext/io/wait/lib/nonblock.rb b/ext/io/wait/lib/nonblock.rb new file mode 100644 index 0000000000..46511fb40c --- /dev/null +++ b/ext/io/wait/lib/nonblock.rb @@ -0,0 +1,23 @@ +require "fcntl" +class IO + def nonblock? + (fcntl(Fcntl::F_GETFL) & File::NONBLOCK) != 0 + end + + def nonblock=(nb) + f = fcntl(Fcntl::F_GETFL) + if nb + f |= File::NONBLOCK + else + f &= ~File::NONBLOCK + end + fcntl(Fcntl::F_SETFL, f) + end + + def nonblock(nb = true) + nb, self.nonblock = nonblock?, nb + yield + ensure + self.nonblock = nb + end +end -- cgit v1.2.3