Changeset e32e092 in mainline for kernel/arch/ia32/src/pm.c


Ignore:
Timestamp:
2008-06-06T07:34:21Z (17 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
eb1c0a3
Parents:
40257f5
Message:

Declare arguments for memstr.h operations as pointers instead of uintptr_t.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/pm.c

    r40257f5 re32e092  
    113113void tss_initialize(tss_t *t)
    114114{
    115         memsetb((uintptr_t) t, sizeof(struct tss), 0);
     115        memsetb(t, sizeof(struct tss), 0);
    116116}
    117117
     
    241241        ipl_t ipl = interrupts_disable();
    242242       
    243         memsetb((uintptr_t) idt, sizeof(idt), 0);
     243        memsetb(idt, sizeof(idt), 0);
    244244       
    245245        ptr_16_32_t idtr;
Note: See TracChangeset for help on using the changeset viewer.