Changeset 7f1c620 in mainline for generic/include/ddi/ddi.h


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/include/ddi/ddi.h

    r991779c5 r7f1c620  
    4040#include <typedefs.h>
    4141
    42 __native sys_physmem_map(__native phys_base, __native virt_base, __native pages,
    43                          __native flags);
    44 extern __native sys_iospace_enable(ddi_ioarg_t *uspace_io_arg);
    45 extern __native sys_preempt_control(int enable);
     42unative_t sys_physmem_map(unative_t phys_base, unative_t virt_base, unative_t pages,
     43                         unative_t flags);
     44extern unative_t sys_iospace_enable(ddi_ioarg_t *uspace_io_arg);
     45extern unative_t sys_preempt_control(int enable);
    4646
    4747/*
    4848 * Interface to be implemented by all architectures.
    4949 */
    50 extern int ddi_iospace_enable_arch(task_t *task, __address ioaddr, size_t size);
     50extern int ddi_iospace_enable_arch(task_t *task, uintptr_t ioaddr, size_t size);
    5151
    5252#endif
Note: See TracChangeset for help on using the changeset viewer.