Query: select_wakeup
OS: osf1
Section: 9r
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
select_wakeup(9r) select_wakeup(9r)NAMEselect_wakeup - General: Wakes up a kernel threadSYNOPSISvoid select_wakeup( sel_queue_t *selq );ARGUMENTSSpecifies a pointer to a sel_queue structure.DESCRIPTIONThe select_wakeup routine wakes up a kernel thread that is suspended while waiting for an event on the specified device. A user-level process can use the select system call to cause the process to be suspended while waiting for an event to happen on a device. For example, a graphics application may issue a select call while waiting for mouse or keyboard input to arrive. In this case the process would issue the select system call, which would indirectly call the graphics driver's select routine (through the driver's select entry point in the dsent table) to determine if any input is available. If input is available, the select call may return immediately. If no input is cur- rently available, the graphics driver would suspend the process until input arrived. For this example, when the graphics driver has received input (typically through its interrupt handler), it causes any processes suspended from calling select to continue by calling the select_wakeup routine. This causes any process currently suspended on the select channel (as specified by the selq argument) to resume.RETURN VALUESNoneSEE ALSORoutines: select_dequeue(9r), select_dequeue_all(9r), select_enqueue(9r) System Calls: select(2) select_wakeup(9r)
Related Man Pages |
---|
explain_select_or_die(3) - debian |
seldestroy(9) - netbsd |
assert_wait_mesg(9r) - osf1 |
select_enqueue(9r) - osf1 |
sleep(9r) - osf1 |
Similar Topics in the Unix Linux Community |
---|
Awk - select from a list |
While read issue... |
Script to create files |
How do i select all contents between two numbers? |
Bugs in my new Ubuntu installation |