示例#1
0
/** @brief locks on a semaphore object */
void MSG_sem_acquire(msg_sem_t sem) {
  simcall_sem_acquire(sem);
}
示例#2
0
void Semaphore::acquire()
{
  simcall_sem_acquire(sem_);
}