[#90865] [Ruby trunk Bug#15499] Breaking behavior on ruby 2.6: rb_thread_call_without_gvl doesn't invoke unblock_function when used on the main thread — apolcyn@...
Issue #15499 has been reported by apolcyn (alex polcyn).
3 messages
2019/01/03
[#90877] [Ruby trunk Bug#15499] Breaking behavior on ruby 2.6: rb_thread_call_without_gvl doesn't invoke unblock_function when used on the main thread — apolcyn@...
Issue #15499 has been updated by apolcyn (alex polcyn).
3 messages
2019/01/03
[#90895] Re: [ruby-alerts:11680] failure alert on trunk-mjit@silicon-docker (NG (r66707)) — Eric Wong <normalperson@...>
ko1c-failure@atdot.net wrote:
4 messages
2019/01/05
[#90896] Re: [ruby-alerts:11680] failure alert on trunk-mjit@silicon-docker (NG (r66707))
— Takashi Kokubun <takashikkbn@...>
2019/01/05
Thanks to explain that.
[#91200] [Ruby trunk Feature#15553] Addrinfo.getaddrinfo supports timeout — glass.saga@...
Issue #15553 has been reported by Glass_saga (Masaki Matsushita).
4 messages
2019/01/21
[#91289] Re: [Ruby trunk Feature#15553] Addrinfo.getaddrinfo supports timeout
— Eric Wong <normalperson@...>
2019/01/26
glass.saga@gmail.com wrote:
[ruby-core:91187] [Ruby trunk Bug#14864] some old linux has no O_CLOEXEC
From:
nagachika00@...
Date:
2019-01-20 04:51:46 UTC
List:
ruby-core #91187
Issue #14864 has been updated by nagachika (Tomoyuki Chikanaga). Backport changed from 2.3: UNKNOWN, 2.4: UNKNOWN, 2.5: REQUIRED to 2.3: UNKNOWN, 2.4: UNKNOWN, 2.5: DONE ruby_2_5 r66878 merged revision(s) 63720. ---------------------------------------- Bug #14864: some old linux has no O_CLOEXEC https://bugs.ruby-lang.org/issues/14864#change-76420 * Author: wangpeiwen (沛文 王) * Status: Closed * Priority: Normal * Assignee: * Target version: * ruby -v: 2.5.1 * Backport: 2.3: UNKNOWN, 2.4: UNKNOWN, 2.5: DONE ---------------------------------------- I get some error when building ruby on suse 10, ~~~ compiling dir.c dir.c: In function ‘nogvl_opendir_at’: dir.c:1439: error: ‘O_CLOEXEC’ undeclared (first use in this function) dir.c:1439: error: (Each undeclared identifier is reported only once dir.c:1439: error: for each function it appears in.) make: *** [Makefile:398: dir.o] Error 1 ~~~ and I see some "ifdef O_CLOEXEC" in io.c and etc. ~~~ ext/dbm/dbm.c:169:29: * gdbm 1.10 works with O_CLOEXEC. gdbm 1.9.1 silently ignore it. ext/dbm/dbm.c:171:9:#ifndef O_CLOEXEC ext/dbm/dbm.c:172:12:# define O_CLOEXEC 0 ext/dbm/dbm.c:177:49: dbm = dbm_open(RSTRING_PTR(file), flags|O_CLOEXEC, mode); ext/dbm/dbm.c:182:62: dbm = dbm_open(RSTRING_PTR(file), O_RDWR|O_CREAT|O_CLOEXEC, mode); ext/dbm/dbm.c:185:54: dbm = dbm_open(RSTRING_PTR(file), O_RDWR|O_CLOEXEC, 0); ext/dbm/dbm.c:188:56: dbm = dbm_open(RSTRING_PTR(file), O_RDONLY|O_CLOEXEC, 0); ext/sdbm/_sdbm.c:228:8:#ifdef O_CLOEXEC ext/sdbm/_sdbm.c:229:18: flags |= O_CLOEXEC; ext/pty/pty.c:257:38: /* FreeBSD 9.2 or later supports O_CLOEXEC ext/pty/pty.c:266:14:# if defined(O_CLOEXEC) ext/pty/pty.c:268:51: * So version dependency on GNU/Linux is same as O_CLOEXEC with open(). ext/pty/pty.c:269:5: * O_CLOEXEC is available since Linux 2.6.23. Linux 2.6.18 silently ignore it. */ ext/pty/pty.c:270:11: flags |= O_CLOEXEC; dir.c:1439:41: const int opendir_flags = (O_RDONLY|O_CLOEXEC| io.c:238:13:#if defined(O_CLOEXEC) && defined(F_GETFD) io.c:246:27:#endif /* fall through if O_CLOEXEC does not work: */ io.c:257:8:#ifdef O_CLOEXEC io.c:258:8: /* O_CLOEXEC is available since Linux 2.6.23. Linux 2.6.18 silently ignore it. */ io.c:259:14: flags |= O_CLOEXEC; io.c:295:35:#if defined(HAVE_DUP3) && defined(O_CLOEXEC) io.c:298:38: ret = dup3(oldfd, newfd, O_CLOEXEC); io.c:327:29: ret = pipe2(fildes, O_CLOEXEC); ~~~ should we add ifdef in dir.c for building on some platform without O_CLOEXEC -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>