Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 979 → Rev 980

/kernel/trunk/generic/src/ipc/ipc.c
190,11 → 190,10
list_append(&request->list, &box->dispatched_calls);
} else {
if (!(flags & IPC_WAIT_NONBLOCKING)) {
/* Wait for event to appear */
condvar_wait(&box->cv, &box->mutex);
continue;
}
if (condvar_trywait(&box->cv, &box->mutex) != ESYNCH_WOULD_BLOCK)
continue;
request = NULL;
}
break;