Changeset a783ca4 in mainline for src/time


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.

Location:
src/time
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/time/delay.c

    ra016b63 ra783ca4  
    3939 * is implemented as CPU calibrated active loop.
    4040 *
    41  * @param microseconds Number of usec to sleep.
    42  *
     41 * @param usec Number of microseconds to sleep.
    4342 */
    44 void delay(__u32 microseconds)
     43void delay(__u32 usec)
    4544{
    4645        pri_t pri;
     
    5049           cpu_priority_high() before calling the asm_delay_loop(). */
    5150        pri = cpu_priority_high();
    52         asm_delay_loop(microseconds * CPU->delay_loop_const);
     51        asm_delay_loop(usec * CPU->delay_loop_const);
    5352        cpu_priority_restore(pri);
    5453}
  • src/time/timeout.c

    ra016b63 ra783ca4  
    9191 *
    9292 * @param t    Timeout list.
    93  * @patam time Number of usec in the future to execute
     93 * @param time Number of usec in the future to execute
    9494 *             the handler.
    9595 * @param f    Timeout handler function.
Note: See TracChangeset for help on using the changeset viewer.