Changeset 7f1c620 in mainline for generic/src/time/timeout.c


Ignore:
Timestamp:
2006-07-04T17:17:56Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ffa3ef5
Parents:
991779c5
Message:

Replace old u?? types with respective C99 variants (e.g. uint32_t, int64_t, uintptr_t etc.).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/time/timeout.c

    r991779c5 r7f1c620  
    104104 *
    105105 */
    106 void timeout_register(timeout_t *t, __u64 time, timeout_handler_t f, void *arg)
     106void timeout_register(timeout_t *t, uint64_t time, timeout_handler_t f, void *arg)
    107107{
    108108        timeout_t *hlp = NULL;
    109109        link_t *l, *m;
    110110        ipl_t ipl;
    111         __u64 sum;
     111        uint64_t sum;
    112112
    113113        ipl = interrupts_disable();
Note: See TracChangeset for help on using the changeset viewer.