Subversion Repositories HelenOS-historic

Rev

Rev 1248 | Rev 1375 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1248 Rev 1288
Line 28... Line 28...
28
 
28
 
29
/**
29
/**
30
 * @file    waitq.c
30
 * @file    waitq.c
31
 * @brief   Wait queue.
31
 * @brief   Wait queue.
32
 *
32
 *
33
 * Wait queue is the basic synchronization primitive upon all
33
 * Wait queue is the basic synchronization primitive upon which all
34
 * other synchronization primitives build.
34
 * other synchronization primitives build.
35
 *
35
 *
36
 * It allows threads to wait for an event in first-come, first-served
36
 * It allows threads to wait for an event in first-come, first-served
37
 * fashion. Conditional operation as well as timeouts and interruptions
37
 * fashion. Conditional operation as well as timeouts and interruptions
38
 * are supported.
38
 * are supported.