[#82311] [Ruby trunk Bug#13794] Infinite loop of sched_yield — charlie@...
Issue #13794 has been reported by catphish (Charlie Smurthwaite).
4 messages
2017/08/09
[#82518] [Ruby trunk Feature#13618] [PATCH] auto fiber schedule for rb_wait_for_single_fd and rb_waitpid — mame@...
Issue #13618 has been updated by mame (Yusuke Endoh).
5 messages
2017/08/30
[#82552] Re: [Ruby trunk Feature#13618] [PATCH] auto fiber schedule for rb_wait_for_single_fd and rb_waitpid
— Eric Wong <normalperson@...>
2017/08/31
mame@ruby-lang.org wrote:
[#82756] Re: [Ruby trunk Feature#13618] [PATCH] auto fiber schedule for rb_wait_for_single_fd and rb_waitpid
— Eric Wrong <normalperson@...>
2017/09/12
Eric Wrong <normalperson@yhbt.net> wrote:
[ruby-core:82275] [Ruby trunk Bug#13786] Unexpected behavior handling shebang
From:
v.ondruch@...
Date:
2017-08-08 06:07:11 UTC
List:
ruby-core #82275
Issue #13786 has been updated by vo.x (Vit Ondruch). shevegen (Robert A. Heiler) wrote: > May I ask, what is the scl program doing with the shebang line? Ok, lets use different shebangs, where the "scl" won't distract you: ~~~ $ cat <<EOF > foo > #!/usr/bin/ruby -- ruby > EOF $ ruby foo /usr/share/rubygems/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- uby (LoadError) from /usr/share/rubygems/rubygems/core_ext/kernel_require.rb:55:in `require' $ cat <<EOF > foo > #!rubbish ruby -- ruby > EOF $ ruby foo /usr/share/rubygems/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- uby (LoadError) from /usr/share/rubygems/rubygems/core_ext/kernel_require.rb:55:in `require' ~~~ ---------------------------------------- Bug #13786: Unexpected behavior handling shebang https://bugs.ruby-lang.org/issues/13786#change-66053 * Author: vo.x (Vit Ondruch) * Status: Open * Priority: Normal * Assignee: * Target version: * ruby -v: ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux] * Backport: 2.2: UNKNOWN, 2.3: UNKNOWN, 2.4: UNKNOWN ---------------------------------------- Ruby exhibits unexpected behavior handling this shebang: ~~~ $ cat <<EOF > foo > #!/usr/bin/scl enable rh-ruby22 -- ruby > EOF $ ruby foo /usr/share/rubygems/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- uby (LoadError) from /usr/share/rubygems/rubygems/core_ext/kernel_require.rb:55:in `require' ~~~ This was originally reported here [1]. [1]: https://bugzilla.redhat.com/show_bug.cgi?id=1478833 -- 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>