bit more on booting of the space

This commit is contained in:
Torsten Ruger
2015-05-24 19:59:19 +03:00
parent 2ccbea04b9
commit 5670f07eac
6 changed files with 29 additions and 17 deletions

View File

@ -37,8 +37,14 @@ module Parfait
# need a two phase init for the object space (and generally parfait) because the space
# is an interconnected graph, so not everthing is ready
def late_init
@frames = 100.times.collect{ ::Parfait::Frame.new([],[])}
@messages = 100.times.collect{ ::Parfait::Message.new }
@frames = List.new_object
@messages = List.new_object
counter = 0
while( counter < 100)
@frames.push Frame.new_object
@messages.push Message.new_object
counter = counter + 1
end
@next_message = @messages.first
@next_frame = @frames.first
end
@ -70,8 +76,8 @@ module Parfait
end
def create_class name , superclass
c = Class.new_object(name , superclass)
raise "uups " if name.is_a? String
c = Class.new_object(name , superclass)
@classes[name] = c
end
end