Event vs. process

In reply to Vaino:

Don’t fork off the process you want to wait for.

fork 
  begin
    seq_inst[1] = stimulus_seq::type_id::create("seq_inst[1]");
    seq_inst[1].start(env_inst.agent_inst[1].sequencer, null);
  end
  join_none
 begin
    seq_inst[0] = stimulus_seq::type_id::create("seq_inst[0]");
    seq_inst[0].start(env_inst.agent_inst[0].sequencer, null);
 end
  // Go forward in test execution after "proc" FINISHED