Changeset 83512f21 in mainline


Ignore:
Timestamp:
2008-05-12T19:04:13Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e1f51712
Parents:
ace9358
Message:

More formatting changes.

Location:
kernel/generic/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/synch/waitq.c

    race9358 r83512f21  
    407407 *
    408408 * @param wq            Pointer to wait queue.
    409  * @param mode          If mode is WAKEUP_FIRST, then the longest waitingi
     409 * @param mode          If mode is WAKEUP_FIRST, then the longest waiting
    410410 *                      thread, if any, is woken up. If mode is WAKEUP_ALL, then
    411411 *                      all waiting threads, if any, are woken up. If there are
  • kernel/generic/src/time/timeout.c

    race9358 r83512f21  
    3333/**
    3434 * @file
    35  * @brief       Timeout management functions.
     35 * @brief               Timeout management functions.
    3636 */
    3737
     
    6262 * Initialize all members except the lock.
    6363 *
    64  * @param t Timeout to be initialized.
     64 * @param t             Timeout to be initialized.
    6565 *
    6666 */
     
    7979 * Initialize all members including the lock.
    8080 *
    81  * @param t Timeout to be initialized.
     81 * @param t             Timeout to be initialized.
    8282 *
    8383 */
     
    9595 * time microseconds (or slightly more).
    9696 *
    97  * @param t    Timeout structure.
    98  * @param time Number of usec in the future to execute
    99  *             the handler.
    100  * @param f    Timeout handler function.
    101  * @param arg  Timeout handler argument.
    102  *
    103  */
    104 void timeout_register(timeout_t *t, uint64_t time, timeout_handler_t f, void *arg)
     97 * @param t             Timeout structure.
     98 * @param time          Number of usec in the future to execute the handler.
     99 * @param f             Timeout handler function.
     100 * @param arg           Timeout handler argument.
     101 *
     102 */
     103void
     104timeout_register(timeout_t *t, uint64_t time, timeout_handler_t f, void *arg)
    105105{
    106106        timeout_t *hlp = NULL;
     
    166166 * Remove timeout from timeout list.
    167167 *
    168  * @param t Timeout to unregister.
    169  *
    170  * @return true on success, false on failure.
     168 * @param t             Timeout to unregister.
     169 *
     170 * @return              True on success, false on failure.
    171171 */
    172172bool timeout_unregister(timeout_t *t)
Note: See TracChangeset for help on using the changeset viewer.