[#27919] 1.8.4 Preview2 検証 — "URABE Shyouhei aka. mput" <root@...>

卜部です。

33 messages 2005/12/01

[#27997] 1.8.4 documents? — "URABE Shyouhei aka. mput" <root@...>

卜部です。

22 messages 2005/12/12
[#28017] Re: 1.8.4 documents? — Koji Arai <jca02266@...> 2005/12/13

新井です。

[#28082] ruby_1_8 Segmentation fault on Cygwin — yanagi@...

柳田です。

13 messages 2005/12/21
[#28083] Re: ruby_1_8 Segmentation fault on Cygwin — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/12/21

山本です。

[#28140] ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — Tanaka Akira <akr@...17n.org>

HP-UX で HP aC++/ANSI C を使って作った ruby で、openssl や drb のテストをすると、

34 messages 2005/12/27
[#28141] Re: ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — WATANABE Tetsuya <Tetsuya.WATANABE@...> 2005/12/28

渡辺哲也です。

[#28142] Re: ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — Tanaka Akira <akr@...17n.org> 2005/12/28

In article <200512280307.jBS37nnj005909@pbsg500.nifty.com>,

[#28147] Re: ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/12/28

山本です。

[#28149] Re: ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — Tanaka Akira <akr@...17n.org> 2005/12/28

In article <20051228210640.13C71A10.ocean@m2.ccsnet.ne.jp>,

[#28151] Re: ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — WATANABE Tetsuya <Tetsuya.WATANABE@...> 2005/12/29

渡辺哲也です。

[#28152] Re: ia64-hpux11.23/socket.sl: this executable file can't load extensionlibraries (LoadError) — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/12/29

山本です。

[#28153] Re: ia64-hpux11.23/socket.sl: this executable file can't load extensionlibraries (LoadError) — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/12/29

山本です。

[#28154] thread based generator.rb — Tanaka Akira <akr@...17n.org> 2005/12/29

In article <20051229114438.44D19F00.ocean@m2.ccsnet.ne.jp>,

[ruby-dev:28178] accessing ruby_cbase (nil) dumps core

From: SASADA Koichi <ko1@...>
Date: 2005-12-29 15:53:51 UTC
List: ruby-dev #28178
 ささだです。

 1.instance_eval %{expr} とすると、expr 実行中は ruby_cbase は nil にな
るようですが、その時点で以下の操作をすると core を吐きます。ruby_cbase
の nil check が抜けているからということだと思います。


ko1@atdot:~/tmp/ruby_head/build$ ./ruby19 -e '
1.instance_eval %{
  p autoload(:Object, "foo")
}
'
(eval):2: [BUG] Segmentation fault
ruby 1.9.0 (2005-12-29) [i686-linux]


ko1@atdot:~/tmp/ruby_head/build$ ./ruby19 -e '
1.instance_eval %{
  p autoload?(:foo)
}
'
(eval):2: [BUG] Segmentation fault
ruby 1.9.0 (2005-12-29) [i686-linux]


ko1@atdot:~/tmp/ruby_head/build$ ./ruby19 -e '
1.instance_eval %{
  C, D = *[1,2]
}
'
(eval):2: [BUG] Segmentation fault
ruby 1.9.0 (2005-12-29) [i686-linux]



 ところで、instance_eval 実行中に ruby_cbase なり ruby_class に
singleton class が渡されるのはなんででしょうか。

class C
  self.instance_eval %{
    def m
    end
  }
end
C.new.m #=> NoMethodError

 こんなので、昔はまったことがありまして。

-- 
// SASADA Koichi at atdot dot net


In This Thread

Prev Next