class Async::Container::Threaded::Child

def wait

@returns [Status]
Wait for the thread to exit and return he exit status.
def wait
	if @waiter
		@waiter.join
		@waiter = nil
	end
	
	return @status
end