diff options
author | Samuel Williams <[email protected]> | 2020-08-20 13:49:09 +1200 |
---|---|---|
committer | Samuel Williams <[email protected]> | 2020-09-14 16:44:09 +1200 |
commit | 905e9c8093b2bb06def609975929465be0f41a0c (patch) | |
tree | 753a2894322c827b22b976322906d79eef14da13 /include | |
parent | 6747cb575414cf781c79c263f68d7b70778efa24 (diff) |
Simplify bitmasks for IO events.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3434
Diffstat (limited to 'include')
-rw-r--r-- | include/ruby/io.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/ruby/io.h b/include/ruby/io.h index 359282a31e..5774a3fc10 100644 --- a/include/ruby/io.h +++ b/include/ruby/io.h @@ -41,6 +41,12 @@ # define RB_WAITFD_OUT 0x004 #endif +typedef enum { + RUBY_IO_READABLE = RB_WAITFD_IN, + RUBY_IO_WRITABLE = RB_WAITFD_OUT, + RUBY_IO_PRIORITY = RB_WAITFD_PRI, +} rb_io_event_t; + #include "ruby/internal/dllexport.h" RBIMPL_SYMBOL_EXPORT_BEGIN() |