Clears the wait condition for a kernel thread.
#include <sys/sleep.h>
void e_clear_wait (tid, result) tid_t tid; int result;
The e_clear_wait kernel service clears the wait condition for the kernel thread specified by the tid parameter, and the thread is made runnable.
This kernel service differs from the e_wakeup, e_wakeup_one, and e_wakeup_w_result kernel services in the fact that it assumes the identity of the thread to be awakened. This kernel service should be used to handle exceptional cases, where a special action needs to be taken. The result parameter is used to specify the value returned to the awakened thread by the e_block_thread or e_sleep_thread kernel service.
The e_clear_wait kernel service has no return values.
The e_clear_wait kernel service can be called from either the process environment or the interrupt environment.
The e_clear_wait kernel service is part of the Base Operating System (BOS) Runtime.
The e_wakeup, e_wakeup_one, or e_wakeup_w_result kernel services, e_block_thread kernel servic, e_sleep_thread kernel service.
Process and Exception Management Kernel Services in AIX Kernel Extensions and Device Support Programming Concepts.