Changeset a783ca4 in mainline for src/synch/condvar.c


Ignore:
Timestamp:
2005-10-11T20:25:46Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
26f9943
Parents:
a016b63
Message:

Fix doxygen comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/synch/condvar.c

    ra016b63 ra783ca4  
    4848 * to the first waiting thread by waking it up.
    4949 *
    50  * @param Condition variable.
     50 * @param cv Condition variable.
    5151 */
    5252void condvar_signal(condvar_t *cv)
     
    6060 * to all waiting threads by waking them up.
    6161 *
    62  * @param Condition variable.
     62 * @param cv Condition variable.
    6363 */
    6464void condvar_broadcast(condvar_t *cv)
     
    7171 * Wait for the condition becoming true.
    7272 *
    73  * @param Condition variable.
     73 * @param cv Condition variable.
     74 * @param mtx Mutex.
     75 * @param usec Timeout value in microseconds.
     76 * @param trywait Blocking versus non-blocking operation mode switch.
     77 *
     78 * For exact description of possible combinations of
     79 * 'usec' and 'trywait', see comment for waitq_sleep_timeout().
     80 *
     81 * @return See comment for waitq_sleep_timeout().
    7482 */
    7583int _condvar_wait_timeout(condvar_t *cv, mutex_t *mtx, __u32 usec, int trywait)
Note: See TracChangeset for help on using the changeset viewer.