Projects
Home     Blog     Install     New Ticket     View Tickets     Browse Source

Ticket #76 (closed defect: fixed)

Opened 6 months ago

Last modified 3 months ago

«stack level too deep» with puts in simple thread

Reported by: kreatix@… Owned by: lsansonetti@…
Priority: blocker Milestone: MacRuby 0.3
Component: MacRuby Keywords:
Cc:

Description

$ cat eval2.rb
#!/usr/local/bin/macruby

t = Thread.new do
  puts "hello"
end

t.join 

$ ./eval2.rb
./eval2.rb:5:in `puts': stack level too deep (SystemStackError)
	from ./eval2.rb:5:in `block in <main>'
$

Change History

Changed 6 months ago by lsansonetti@…

  • milestone set to MacRuby 0.3

Changed 3 months ago by lsansonetti@…

  • milestone changed from MacRuby 0.3 to MacRuby 0.4

Changed 3 months ago by lsansonetti@…

  • status changed from new to closed
  • resolution set to fixed
  • milestone changed from MacRuby 0.4 to MacRuby 0.3

Fixed in r563/trunk.

Note: See TracTickets for help on using tickets.