io-event 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/IO_Event.bundle +0 -0
- data/ext/Makefile +25 -24
- data/ext/event.o +0 -0
- data/ext/extconf.h +4 -0
- data/ext/interrupt.o +0 -0
- data/ext/io/event/selector/epoll.c +7 -1
- data/ext/io/event/selector/kqueue.c +7 -1
- data/ext/io/event/selector/uring.c +5 -2
- data/ext/kqueue.o +0 -0
- data/ext/mkmf.log +27 -45
- data/ext/selector.o +0 -0
- data/lib/io/event/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4082e35d4449813886e1f44ffd9f6825a48b69c5207b1bb7685d6fd920a6e7a0
|
|
4
|
+
data.tar.gz: c312e74c8e0c458e86215110cb5cd21f431709c4a120db4c37c670bb227528d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 795d6a27a0d074d7045c727ae241ea3c5fb3f14bed0e9541ee7d29f92f474896eb57a12b5e09838725e120b46ee084f3ebe4373a9f30915b46551a586d67d0a5
|
|
7
|
+
data.tar.gz: 5eb59147bd4c6f66678e962e3df79b876668fb3c6ac4d60aa27859080c7e6cf6c0eb3f25a4200552f0e829501337e5465f9994aa92c662b6a81afdacbb622990
|
data/ext/IO_Event.bundle
CHANGED
|
Binary file
|
data/ext/Makefile
CHANGED
|
@@ -3,6 +3,7 @@ SHELL = /bin/sh
|
|
|
3
3
|
|
|
4
4
|
# V=0 quiet, V=1 verbose. other values don't work.
|
|
5
5
|
V = 0
|
|
6
|
+
V0 = $(V:0=)
|
|
6
7
|
Q1 = $(V:1=)
|
|
7
8
|
Q = $(Q1:0=@)
|
|
8
9
|
ECHO1 = $(V:1=@ :)
|
|
@@ -12,12 +13,12 @@ NULLCMD = :
|
|
|
12
13
|
#### Start of system configuration section. ####
|
|
13
14
|
|
|
14
15
|
srcdir = .
|
|
15
|
-
topdir = /Users/samuel/.rubies/ruby-
|
|
16
|
+
topdir = /Users/samuel/.rubies/ruby-head/include/ruby-3.1.0
|
|
16
17
|
hdrdir = $(topdir)
|
|
17
|
-
arch_hdrdir = /Users/samuel/.rubies/ruby-
|
|
18
|
+
arch_hdrdir = /Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21
|
|
18
19
|
PATH_SEPARATOR = :
|
|
19
20
|
VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby:$(srcdir)/io/event:$(srcdir)/io/event/selector
|
|
20
|
-
prefix = $(DESTDIR)/Users/samuel/.rubies/ruby-
|
|
21
|
+
prefix = $(DESTDIR)/Users/samuel/.rubies/ruby-head
|
|
21
22
|
rubysitearchprefix = $(rubylibprefix)/$(sitearch)
|
|
22
23
|
rubyarchprefix = $(rubylibprefix)/$(arch)
|
|
23
24
|
rubylibprefix = $(libdir)/$(RUBY_BASE_NAME)
|
|
@@ -50,8 +51,8 @@ dvidir = $(docdir)
|
|
|
50
51
|
htmldir = $(docdir)
|
|
51
52
|
infodir = $(datarootdir)/info
|
|
52
53
|
docdir = $(datarootdir)/doc/$(PACKAGE)
|
|
53
|
-
oldincludedir = $(
|
|
54
|
-
includedir = $(prefix)/include
|
|
54
|
+
oldincludedir = $(DESTDIR)/usr/include
|
|
55
|
+
includedir = $(SDKROOT)$(prefix)/include
|
|
55
56
|
runstatedir = $(localstatedir)/run
|
|
56
57
|
localstatedir = $(prefix)/var
|
|
57
58
|
sharedstatedir = $(prefix)/com
|
|
@@ -65,33 +66,33 @@ archdir = $(rubyarchdir)
|
|
|
65
66
|
|
|
66
67
|
|
|
67
68
|
CC_WRAPPER =
|
|
68
|
-
CC = clang
|
|
69
|
-
CXX = clang++
|
|
69
|
+
CC = clang
|
|
70
|
+
CXX = clang++
|
|
70
71
|
LIBRUBY = $(LIBRUBY_A)
|
|
71
72
|
LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
|
|
72
73
|
LIBRUBYARG_SHARED =
|
|
73
|
-
LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static -framework
|
|
74
|
+
LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static -framework CoreFoundation $(MAINLIBS)
|
|
74
75
|
empty =
|
|
75
76
|
OUTFLAG = -o $(empty)
|
|
76
77
|
COUTFLAG = -o $(empty)
|
|
77
78
|
CSRCFLAG = $(empty)
|
|
78
79
|
|
|
79
80
|
RUBY_EXTCONF_H = extconf.h
|
|
80
|
-
cflags = $(optflags) $(debugflags) $(warnflags)
|
|
81
|
+
cflags = -fdeclspec $(optflags) $(debugflags) $(warnflags)
|
|
81
82
|
cxxflags =
|
|
82
|
-
optflags = -O3
|
|
83
|
+
optflags = -O3 -fno-fast-math
|
|
83
84
|
debugflags = -ggdb3
|
|
84
|
-
warnflags = -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens
|
|
85
|
+
warnflags = -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef
|
|
85
86
|
cppflags =
|
|
86
87
|
CCDLFLAGS = -fno-common
|
|
87
|
-
CFLAGS = $(CCDLFLAGS) $(cflags)
|
|
88
|
+
CFLAGS = $(CCDLFLAGS) $(cflags) -pipe -Wall $(ARCH_FLAG)
|
|
88
89
|
INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
|
|
89
90
|
DEFS =
|
|
90
|
-
CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\"
|
|
91
|
-
CXXFLAGS = $(CCDLFLAGS)
|
|
92
|
-
ldflags = -L. -fstack-protector-strong
|
|
93
|
-
dldflags = -Wl,-undefined,dynamic_lookup -Wl,-multiply_defined,suppress
|
|
94
|
-
ARCH_FLAG =
|
|
91
|
+
CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT $(DEFS) $(cppflags)
|
|
92
|
+
CXXFLAGS = $(CCDLFLAGS) -fdeclspec $(ARCH_FLAG)
|
|
93
|
+
ldflags = -L. -fstack-protector-strong
|
|
94
|
+
dldflags = -Wl,-undefined,dynamic_lookup -Wl,-multiply_defined,suppress
|
|
95
|
+
ARCH_FLAG =
|
|
95
96
|
DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
|
|
96
97
|
LDSHARED = $(CC) -dynamic -bundle
|
|
97
98
|
LDSHAREDXX = $(CXX) -dynamic -bundle
|
|
@@ -99,7 +100,7 @@ AR = ar
|
|
|
99
100
|
EXEEXT =
|
|
100
101
|
|
|
101
102
|
RUBY_INSTALL_NAME = $(RUBY_BASE_NAME)
|
|
102
|
-
RUBY_SO_NAME = ruby.3.
|
|
103
|
+
RUBY_SO_NAME = ruby.3.1
|
|
103
104
|
RUBYW_INSTALL_NAME =
|
|
104
105
|
RUBY_VERSION_NAME = $(RUBY_BASE_NAME)-$(ruby_version)
|
|
105
106
|
RUBYW_BASE_NAME = rubyw
|
|
@@ -107,13 +108,13 @@ RUBY_BASE_NAME = ruby
|
|
|
107
108
|
|
|
108
109
|
arch = arm64-darwin21
|
|
109
110
|
sitearch = $(arch)
|
|
110
|
-
ruby_version = 3.
|
|
111
|
+
ruby_version = 3.1.0
|
|
111
112
|
ruby = $(bindir)/$(RUBY_BASE_NAME)
|
|
112
113
|
RUBY = $(ruby)
|
|
113
114
|
ruby_headers = $(hdrdir)/ruby.h $(hdrdir)/ruby/backward.h $(hdrdir)/ruby/ruby.h $(hdrdir)/ruby/defines.h $(hdrdir)/ruby/missing.h $(hdrdir)/ruby/intern.h $(hdrdir)/ruby/st.h $(hdrdir)/ruby/subst.h $(arch_hdrdir)/ruby/config.h $(RUBY_EXTCONF_H)
|
|
114
115
|
|
|
115
116
|
RM = rm -f
|
|
116
|
-
RM_RF =
|
|
117
|
+
RM_RF = rm -fr
|
|
117
118
|
RMDIRS = rmdir -p
|
|
118
119
|
MAKEDIRS = /opt/local/bin/gmkdir -p
|
|
119
120
|
INSTALL = /opt/local/bin/ginstall -c
|
|
@@ -125,8 +126,8 @@ TOUCH = exit >
|
|
|
125
126
|
#### End of system configuration section. ####
|
|
126
127
|
|
|
127
128
|
preload =
|
|
128
|
-
libpath = . $(libdir)
|
|
129
|
-
LIBPATH = -L. -L$(libdir)
|
|
129
|
+
libpath = . $(libdir)
|
|
130
|
+
LIBPATH = -L. -L$(libdir)
|
|
130
131
|
DEFFILE =
|
|
131
132
|
|
|
132
133
|
CLEANFILES = mkmf.log
|
|
@@ -159,7 +160,7 @@ HDRDIR = $(sitehdrdir)$(target_prefix)
|
|
|
159
160
|
ARCHHDRDIR = $(sitearchhdrdir)$(target_prefix)
|
|
160
161
|
TARGET_SO_DIR =
|
|
161
162
|
TARGET_SO = $(TARGET_SO_DIR)$(DLLIB)
|
|
162
|
-
CLEANLIBS = $(TARGET_SO)
|
|
163
|
+
CLEANLIBS = $(TARGET_SO) $(TARGET_SO).dSYM
|
|
163
164
|
CLEANOBJS = *.o *.bak
|
|
164
165
|
|
|
165
166
|
all: $(DLLIB)
|
|
@@ -172,7 +173,7 @@ clean-rb-default::
|
|
|
172
173
|
clean-rb::
|
|
173
174
|
clean-so::
|
|
174
175
|
clean: clean-so clean-static clean-rb-default clean-rb
|
|
175
|
-
-$(Q)$(
|
|
176
|
+
-$(Q)$(RM_RF) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES) .*.time
|
|
176
177
|
|
|
177
178
|
distclean-rb-default::
|
|
178
179
|
distclean-rb::
|
data/ext/event.o
CHANGED
|
Binary file
|
data/ext/extconf.h
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
#ifndef EXTCONF_H
|
|
2
2
|
#define EXTCONF_H
|
|
3
3
|
#define HAVE_RB_EXT_RACTOR_SAFE 1
|
|
4
|
+
#define HAVE__RB_FIBER_TRANSFER 1
|
|
4
5
|
#define HAVE_SYS_EVENT_H 1
|
|
6
|
+
#define HAVE_RB_IO_DESCRIPTOR 1
|
|
5
7
|
#define HAVE_RB_FIBER_CURRENT 1
|
|
8
|
+
#define HAVE__RB_FIBER_RAISE 1
|
|
9
|
+
#define HAVE_RUBY_IO_BUFFER_H 1
|
|
6
10
|
#endif
|
data/ext/interrupt.o
CHANGED
|
Binary file
|
|
@@ -378,7 +378,11 @@ VALUE io_read_loop(VALUE _arguments) {
|
|
|
378
378
|
break;
|
|
379
379
|
} else if (result > 0) {
|
|
380
380
|
offset += result;
|
|
381
|
-
|
|
381
|
+
|
|
382
|
+
// Ensure we don't underflow length:
|
|
383
|
+
if ((size_t)result < length)
|
|
384
|
+
length -= result;
|
|
385
|
+
else break;
|
|
382
386
|
} else if (errno == EAGAIN || errno == EWOULDBLOCK) {
|
|
383
387
|
IO_Event_Selector_EPoll_io_wait(arguments->self, arguments->fiber, arguments->io, RB_INT2NUM(IO_EVENT_READABLE));
|
|
384
388
|
} else {
|
|
@@ -450,6 +454,8 @@ VALUE io_write_loop(VALUE _arguments) {
|
|
|
450
454
|
|
|
451
455
|
if (result >= 0) {
|
|
452
456
|
offset += result;
|
|
457
|
+
|
|
458
|
+
// Result must always be <= than length:
|
|
453
459
|
length -= result;
|
|
454
460
|
} else if (errno == EAGAIN || errno == EWOULDBLOCK) {
|
|
455
461
|
IO_Event_Selector_EPoll_io_wait(arguments->self, arguments->fiber, arguments->io, RB_INT2NUM(IO_EVENT_WRITABLE));
|
|
@@ -400,7 +400,11 @@ VALUE io_read_loop(VALUE _arguments) {
|
|
|
400
400
|
break;
|
|
401
401
|
} else if (result > 0) {
|
|
402
402
|
offset += result;
|
|
403
|
-
|
|
403
|
+
|
|
404
|
+
// Ensure we don't underflow length:
|
|
405
|
+
if ((size_t)result < length)
|
|
406
|
+
length -= result;
|
|
407
|
+
else break;
|
|
404
408
|
} else if (errno == EAGAIN || errno == EWOULDBLOCK) {
|
|
405
409
|
IO_Event_Selector_KQueue_io_wait(arguments->self, arguments->fiber, arguments->io, RB_INT2NUM(IO_EVENT_READABLE));
|
|
406
410
|
} else {
|
|
@@ -475,6 +479,8 @@ VALUE io_write_loop(VALUE _arguments) {
|
|
|
475
479
|
|
|
476
480
|
if (result >= 0) {
|
|
477
481
|
offset += result;
|
|
482
|
+
|
|
483
|
+
// Result must always be <= than length:
|
|
478
484
|
length -= result;
|
|
479
485
|
} else if (errno == EAGAIN || errno == EWOULDBLOCK) {
|
|
480
486
|
IO_Event_Selector_KQueue_io_wait(arguments->self, arguments->fiber, arguments->io, RB_INT2NUM(IO_EVENT_WRITABLE));
|
|
@@ -404,8 +404,11 @@ VALUE IO_Event_Selector_URing_io_read(VALUE self, VALUE fiber, VALUE io, VALUE b
|
|
|
404
404
|
break;
|
|
405
405
|
} else if (result > 0) {
|
|
406
406
|
offset += result;
|
|
407
|
-
|
|
408
|
-
|
|
407
|
+
|
|
408
|
+
// Ensure we don't underflow length:
|
|
409
|
+
if ((size_t)result < length)
|
|
410
|
+
length -= result;
|
|
411
|
+
else break;
|
|
409
412
|
} else if (-result == EAGAIN || -result == EWOULDBLOCK) {
|
|
410
413
|
IO_Event_Selector_URing_io_wait(self, fiber, io, RB_INT2NUM(IO_EVENT_READABLE));
|
|
411
414
|
} else {
|
data/ext/kqueue.o
CHANGED
|
Binary file
|
data/ext/mkmf.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
have_func: checking for rb_ext_ractor_safe()... -------------------- yes
|
|
2
2
|
|
|
3
|
-
"clang -
|
|
3
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -o conftest -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall conftest.c -L. -L/Users/samuel/.rubies/ruby-head/lib -L. -fstack-protector-strong -lruby.3.1-static -framework CoreFoundation -lpthread -ldl -lobjc "
|
|
4
4
|
checked program was:
|
|
5
5
|
/* begin */
|
|
6
6
|
1: #include "ruby.h"
|
|
@@ -11,7 +11,7 @@ checked program was:
|
|
|
11
11
|
6: }
|
|
12
12
|
/* end */
|
|
13
13
|
|
|
14
|
-
"clang -
|
|
14
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -o conftest -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall conftest.c -L. -L/Users/samuel/.rubies/ruby-head/lib -L. -fstack-protector-strong -lruby.3.1-static -framework CoreFoundation -lpthread -ldl -lobjc "
|
|
15
15
|
checked program was:
|
|
16
16
|
/* begin */
|
|
17
17
|
1: #include "ruby.h"
|
|
@@ -32,13 +32,9 @@ checked program was:
|
|
|
32
32
|
|
|
33
33
|
--------------------
|
|
34
34
|
|
|
35
|
-
have_func: checking for &rb_fiber_transfer()... --------------------
|
|
35
|
+
have_func: checking for &rb_fiber_transfer()... -------------------- yes
|
|
36
36
|
|
|
37
|
-
"clang -
|
|
38
|
-
conftest.c:14:76: error: use of undeclared identifier 'rb_fiber_transfer'
|
|
39
|
-
int t(void) { const volatile void *volatile p; p = (const volatile void *)&rb_fiber_transfer; return !p; }
|
|
40
|
-
^
|
|
41
|
-
1 error generated.
|
|
37
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -o conftest -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall conftest.c -L. -L/Users/samuel/.rubies/ruby-head/lib -L. -fstack-protector-strong -lruby.3.1-static -framework CoreFoundation -lpthread -ldl -lobjc "
|
|
42
38
|
checked program was:
|
|
43
39
|
/* begin */
|
|
44
40
|
1: #include "ruby.h"
|
|
@@ -61,7 +57,7 @@ checked program was:
|
|
|
61
57
|
|
|
62
58
|
have_library: checking for -luring... -------------------- no
|
|
63
59
|
|
|
64
|
-
"clang -
|
|
60
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -o conftest -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall conftest.c -L. -L/Users/samuel/.rubies/ruby-head/lib -L. -fstack-protector-strong -lruby.3.1-static -framework CoreFoundation -lpthread -ldl -lobjc -luring "
|
|
65
61
|
ld: library not found for -luring
|
|
66
62
|
clang: error: linker command failed with exit code 1 (use -v to see invocation)
|
|
67
63
|
checked program was:
|
|
@@ -87,7 +83,7 @@ checked program was:
|
|
|
87
83
|
|
|
88
84
|
have_header: checking for sys/epoll.h... -------------------- no
|
|
89
85
|
|
|
90
|
-
"clang -
|
|
86
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall -c conftest.c"
|
|
91
87
|
conftest.c:3:10: fatal error: 'sys/epoll.h' file not found
|
|
92
88
|
#include <sys/epoll.h>
|
|
93
89
|
^~~~~~~~~~~~~
|
|
@@ -103,7 +99,7 @@ checked program was:
|
|
|
103
99
|
|
|
104
100
|
have_header: checking for sys/event.h... -------------------- yes
|
|
105
101
|
|
|
106
|
-
"clang -
|
|
102
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall -c conftest.c"
|
|
107
103
|
checked program was:
|
|
108
104
|
/* begin */
|
|
109
105
|
1: #include "ruby.h"
|
|
@@ -115,7 +111,7 @@ checked program was:
|
|
|
115
111
|
|
|
116
112
|
have_header: checking for sys/eventfd.h... -------------------- no
|
|
117
113
|
|
|
118
|
-
"clang -
|
|
114
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall -c conftest.c"
|
|
119
115
|
conftest.c:3:10: fatal error: 'sys/eventfd.h' file not found
|
|
120
116
|
#include <sys/eventfd.h>
|
|
121
117
|
^~~~~~~~~~~~~~~
|
|
@@ -129,9 +125,9 @@ checked program was:
|
|
|
129
125
|
|
|
130
126
|
--------------------
|
|
131
127
|
|
|
132
|
-
have_func: checking for rb_io_descriptor()... --------------------
|
|
128
|
+
have_func: checking for rb_io_descriptor()... -------------------- yes
|
|
133
129
|
|
|
134
|
-
"clang -
|
|
130
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -o conftest -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall conftest.c -L. -L/Users/samuel/.rubies/ruby-head/lib -L. -fstack-protector-strong -lruby.3.1-static -framework CoreFoundation -lpthread -ldl -lobjc "
|
|
135
131
|
conftest.c:14:57: error: use of undeclared identifier 'rb_io_descriptor'
|
|
136
132
|
int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_io_descriptor; return !p; }
|
|
137
133
|
^
|
|
@@ -154,12 +150,7 @@ checked program was:
|
|
|
154
150
|
14: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_io_descriptor; return !p; }
|
|
155
151
|
/* end */
|
|
156
152
|
|
|
157
|
-
"clang -
|
|
158
|
-
Undefined symbols for architecture arm64:
|
|
159
|
-
"_rb_io_descriptor", referenced from:
|
|
160
|
-
_t in conftest-1e4d1a.o
|
|
161
|
-
ld: symbol(s) not found for architecture arm64
|
|
162
|
-
clang: error: linker command failed with exit code 1 (use -v to see invocation)
|
|
153
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -o conftest -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall conftest.c -L. -L/Users/samuel/.rubies/ruby-head/lib -L. -fstack-protector-strong -lruby.3.1-static -framework CoreFoundation -lpthread -ldl -lobjc "
|
|
163
154
|
checked program was:
|
|
164
155
|
/* begin */
|
|
165
156
|
1: #include "ruby.h"
|
|
@@ -183,7 +174,7 @@ checked program was:
|
|
|
183
174
|
|
|
184
175
|
have_func: checking for &rb_process_status_wait()... -------------------- no
|
|
185
176
|
|
|
186
|
-
"clang -
|
|
177
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -o conftest -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall conftest.c -L. -L/Users/samuel/.rubies/ruby-head/lib -L. -fstack-protector-strong -lruby.3.1-static -framework CoreFoundation -lpthread -ldl -lobjc "
|
|
187
178
|
conftest.c:14:76: error: use of undeclared identifier 'rb_process_status_wait'
|
|
188
179
|
int t(void) { const volatile void *volatile p; p = (const volatile void *)&rb_process_status_wait; return !p; }
|
|
189
180
|
^
|
|
@@ -210,7 +201,7 @@ checked program was:
|
|
|
210
201
|
|
|
211
202
|
have_func: checking for rb_fiber_current()... -------------------- yes
|
|
212
203
|
|
|
213
|
-
"clang -
|
|
204
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -o conftest -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall conftest.c -L. -L/Users/samuel/.rubies/ruby-head/lib -L. -fstack-protector-strong -lruby.3.1-static -framework CoreFoundation -lpthread -ldl -lobjc "
|
|
214
205
|
checked program was:
|
|
215
206
|
/* begin */
|
|
216
207
|
1: #include "ruby.h"
|
|
@@ -231,17 +222,9 @@ checked program was:
|
|
|
231
222
|
|
|
232
223
|
--------------------
|
|
233
224
|
|
|
234
|
-
have_func: checking for &rb_fiber_raise()... --------------------
|
|
225
|
+
have_func: checking for &rb_fiber_raise()... -------------------- yes
|
|
235
226
|
|
|
236
|
-
"clang -
|
|
237
|
-
conftest.c:14:76: error: use of undeclared identifier 'rb_fiber_raise'; did you mean 'rb_fiber_resume'?
|
|
238
|
-
int t(void) { const volatile void *volatile p; p = (const volatile void *)&rb_fiber_raise; return !p; }
|
|
239
|
-
^~~~~~~~~~~~~~
|
|
240
|
-
rb_fiber_resume
|
|
241
|
-
/Users/samuel/.rubies/ruby-3.0.3/include/ruby-3.0.0/ruby/internal/intern/cont.h:32:7: note: 'rb_fiber_resume' declared here
|
|
242
|
-
VALUE rb_fiber_resume(VALUE fib, int argc, const VALUE *argv);
|
|
243
|
-
^
|
|
244
|
-
1 error generated.
|
|
227
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -o conftest -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall conftest.c -L. -L/Users/samuel/.rubies/ruby-head/lib -L. -fstack-protector-strong -lruby.3.1-static -framework CoreFoundation -lpthread -ldl -lobjc "
|
|
245
228
|
checked program was:
|
|
246
229
|
/* begin */
|
|
247
230
|
1: #include "ruby.h"
|
|
@@ -262,14 +245,9 @@ checked program was:
|
|
|
262
245
|
|
|
263
246
|
--------------------
|
|
264
247
|
|
|
265
|
-
have_header: checking for ruby/io/buffer.h... --------------------
|
|
248
|
+
have_header: checking for ruby/io/buffer.h... -------------------- yes
|
|
266
249
|
|
|
267
|
-
"clang -
|
|
268
|
-
conftest.c:3:10: fatal error: 'ruby/io/buffer.h' file not found
|
|
269
|
-
#include <ruby/io/buffer.h>
|
|
270
|
-
^~~~~~~~~~~~~~~~~~
|
|
271
|
-
conftest.c:3:10: note: did not find header 'io/buffer.h' in framework 'ruby' (loaded from '/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks')
|
|
272
|
-
1 error generated.
|
|
250
|
+
DYLD_FALLBACK_LIBRARY_PATH=.:/Users/samuel/.rubies/ruby-head/lib "clang -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/arm64-darwin21 -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0/ruby/backward -I/Users/samuel/.rubies/ruby-head/include/ruby-3.1.0 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -pipe -Wall -c conftest.c"
|
|
273
251
|
checked program was:
|
|
274
252
|
/* begin */
|
|
275
253
|
1: #include "ruby.h"
|
|
@@ -281,11 +259,15 @@ checked program was:
|
|
|
281
259
|
|
|
282
260
|
extconf.h is:
|
|
283
261
|
/* begin */
|
|
284
|
-
1: #ifndef EXTCONF_H
|
|
285
|
-
2: #define EXTCONF_H
|
|
286
|
-
3: #define HAVE_RB_EXT_RACTOR_SAFE 1
|
|
287
|
-
4: #define
|
|
288
|
-
5: #define
|
|
289
|
-
6: #
|
|
262
|
+
1: #ifndef EXTCONF_H
|
|
263
|
+
2: #define EXTCONF_H
|
|
264
|
+
3: #define HAVE_RB_EXT_RACTOR_SAFE 1
|
|
265
|
+
4: #define HAVE__RB_FIBER_TRANSFER 1
|
|
266
|
+
5: #define HAVE_SYS_EVENT_H 1
|
|
267
|
+
6: #define HAVE_RB_IO_DESCRIPTOR 1
|
|
268
|
+
7: #define HAVE_RB_FIBER_CURRENT 1
|
|
269
|
+
8: #define HAVE__RB_FIBER_RAISE 1
|
|
270
|
+
9: #define HAVE_RUBY_IO_BUFFER_H 1
|
|
271
|
+
10: #endif
|
|
290
272
|
/* end */
|
|
291
273
|
|
data/ext/selector.o
CHANGED
|
Binary file
|
data/lib/io/event/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: io-event
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-12-
|
|
11
|
+
date: 2021-12-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bake
|
|
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
120
120
|
- !ruby/object:Gem::Version
|
|
121
121
|
version: '0'
|
|
122
122
|
requirements: []
|
|
123
|
-
rubygems_version: 3.
|
|
123
|
+
rubygems_version: 3.3.0.dev
|
|
124
124
|
signing_key:
|
|
125
125
|
specification_version: 4
|
|
126
126
|
summary: An event loop.
|