Changeset 7f1c620 in mainline for generic/src/syscall/syscall.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/syscall/syscall.c

    r991779c5 r7f1c620  
    5959 * this syscall to facilitate it.
    6060 */
    61 static __native sys_io(int fd, const void * buf, size_t count)
     61static unative_t sys_io(int fd, const void * buf, size_t count)
    6262{
    6363        size_t i;
     
    8686
    8787/** Tell kernel to get keyboard/console access again */
    88 static __native sys_debug_enable_console(void)
     88static unative_t sys_debug_enable_console(void)
    8989{
    9090        arch_grab_console();
     
    9393
    9494/** Dispatch system call */
    95 __native syscall_handler(__native a1, __native a2, __native a3,
    96                          __native a4, __native id)
     95unative_t syscall_handler(unative_t a1, unative_t a2, unative_t a3,
     96                         unative_t a4, unative_t id)
    9797{
    98         __native rc;
     98        unative_t rc;
    9999
    100100        if (id < SYSCALL_END)
Note: See TracChangeset for help on using the changeset viewer.