From: ara.t.howard@... Date: 2006-07-06T22:49:18+09:00 Subject: [BUG] thread/sync.rb memory corruption ---1400102478-1837200962-1152193755=:18759 Content-Type: MULTIPART/MIXED; BOUNDARY="-1400102478-1837200962-1152193755=:18759" This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---1400102478-1837200962-1152193755=:18759 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed i'm using ef (electric fence) to show the memory corruption in this script. to cause it corrupt memory use CORRUPT=true ef ruby bug.rb file: bug.rb require 'sync' class A def initialize extend Sync_m @observers = [] end def meth synchronize(:EX){ @observers.each do |o| if ENV['CORRUPT'] o.notify nil else o.notify end end } end def add_observer o synchronize(:EX){ @observers << o } end end class B def initialize a @a = a @a.add_observer self end def notify *a Thread.new{ @a.meth } end end a = A.new b = B.new a a.meth STDIN.gets note that it is the simple passing, or not, of arguments to the notify method which triggers the bug. perhaps this will yield some hints. regards. -a -- suffering increases your inner strength. also, the wishing for suffering makes the suffering disappear. - h.h. the 14th dali lama ---1400102478-1837200962-1152193755=:18759 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=bug.rb Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=bug.rb cmVxdWlyZSAnc3luYycNCg0KY2xhc3MgQQ0KICBkZWYgaW5pdGlhbGl6ZQ0K ICAgIGV4dGVuZCBTeW5jX20NCiAgICBAb2JzZXJ2ZXJzID0gW10NCiAgZW5k DQogIGRlZiBtZXRoDQogICAgc3luY2hyb25pemUoOkVYKXsNCiAgICAgIEBv YnNlcnZlcnMuZWFjaCBkbyB8b3wNCiAgICAgICAgaWYgRU5WWydDT1JSVVBU J10gDQogICAgICAgICAgby5ub3RpZnkgbmlsDQogICAgICAgIGVsc2UNCiAg ICAgICAgICBvLm5vdGlmeQ0KICAgICAgICBlbmQNCiAgICAgIGVuZA0KICAg IH0NCiAgZW5kDQogIGRlZiBhZGRfb2JzZXJ2ZXIgbw0KICAgIHN5bmNocm9u aXplKDpFWCl7DQogICAgICBAb2JzZXJ2ZXJzIDw8IG8NCiAgICB9DQogIGVu ZA0KZW5kDQoNCmNsYXNzIEINCiAgZGVmIGluaXRpYWxpemUgYQ0KICAgIEBh ID0gYQ0KICAgIEBhLmFkZF9vYnNlcnZlciBzZWxmDQogIGVuZA0KICBkZWYg bm90aWZ5ICphIA0KICAgIFRocmVhZC5uZXd7IEBhLm1ldGggfQ0KICBlbmQN CmVuZA0KDQphID0gQS5uZXcNCmIgPSBCLm5ldyBhDQphLm1ldGgNClNURElO LmdldHMNCg== ---1400102478-1837200962-1152193755=:18759-- ---1400102478-1837200962-1152193755=:18759--