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


Ignore:
Timestamp:
2008-06-06T07:34:21Z (18 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/amd64/src/pm.c

    r40257f5 re32e092  
    156156void tss_initialize(tss_t *t)
    157157{
    158         memsetb((uintptr_t) t, sizeof(tss_t), 0);
     158        memsetb(t, sizeof(tss_t), 0);
    159159}
    160160
     
    240240        ipl_t ipl = interrupts_disable();
    241241       
    242         memsetb((uintptr_t) idt, sizeof(idt), 0);
     242        memsetb(idt, sizeof(idt), 0);
    243243        idtr_load(&idtr);
    244244       
Note: See TracChangeset for help on using the changeset viewer.