Rechercher une page de manuel
selwakeup.9freebsd
Langue: en
Version: 307227 (debian - 07/07/09)
Section: 9 (Appels noyau Linux)
BSD mandoc
NAME
selrecord selwakeup - record and wakeup select requestsSYNOPSIS
In sys/param.h In sys/selinfo.h Ft void Fn selrecord struct thread *td struct selinfo *sip Ft void Fn selwakeup struct selinfo *sipDESCRIPTION
Fn selrecord and Fn selwakeup are the two central functions used by select(2), poll(2) and the objects that are being selected on. They handle the task of recording which threads are waiting on which objects and the waking of the proper threads when an event of interest occurs on an object.Fn selrecord records that the calling thread is interested in events related to a given object. If another thread is already waiting on the object a collision will be flagged in Fa sip which will be later dealt with by Fn selwakeup .
Fn selrecord acquires and releases sellock
Fn selwakeup is called by the underlying object handling code in order to notify any waiting threads that an event of interest has occurred. If a collision has occurred, Fn selwakeup will increment nselcoll and broadcast on the global cv in order to wake all waiting threads so that they can handle it. If the thread waiting on the object is not currently sleeping or the wait channel is not selwait Fn selwakeup will clear the TDF_SELECT flag which should be noted by select(2) and poll(2) when they wake up.
The contents of Fa *sip must be zeroed, such as by softc initialization, before any call to Fn selrecord or Fn selwakeup , otherwise a panic may occur. Fn selwakeup acquires and releases sellock and may acquire and release sched_lock
SEE ALSO
poll(2), select(2)AUTHORS
An -nosplit This manual page was written by An Chad David Aq davidc@FreeBSD.org and An Alfred Perlstein Aq alfred@FreeBSD.org .Contenus ©2006-2024 Benjamin Poulain
Design ©2006-2024 Maxime Vantorre