Exemplo n.º 1
0
/**
* \brief Wait for the completion of a #msg_process_t.
*
* \param process the process to wait for
* \param timeout wait until the process is over, or the timeout occurs
*/
msg_error_t MSG_process_join(msg_process_t process, double timeout){
  simcall_process_join(process, timeout);
  return MSG_OK;
}
Exemplo n.º 2
0
void Actor::join() {
  simcall_process_join(pimpl_, -1);
}