|
| int | osal_wait_init (osal_wait *wait) |
| | Initialize a waiting queue.
|
| |
| int | osal_wait_interruptible (osal_wait *wait, osal_wait_condition_func func, const void *param) |
| | sleep until a condition gets true
|
| |
| int | osal_wait_uninterruptible (osal_wait *wait, osal_wait_condition_func func, const void *param) |
| | sleep until a condition gets true
|
| |
| int | osal_wait_timeout_interruptible (osal_wait *wait, osal_wait_condition_func func, const void *param, unsigned long ms) |
| | sleep until a condition gets true or a timeout elapses.
|
| |
| int | osal_wait_timeout_uninterruptible (osal_wait *wait, osal_wait_condition_func func, const void *param, unsigned long ms) |
| | sleep until a condition gets true or a timeout elapses.
|
| |
| void | osal_wait_wakeup (osal_wait *wait) |
| | wake up threads blocked on a waitqueue.
|
| |
| void | osal_wait_wakeup_interruptible (osal_wait *wait) |
| | wake up threads blocked on a waitqueue.
|
| |
| void | osal_wait_destroy (osal_wait *wait) |
| | to destroy the wait.
|
| |