Changeset 631ca4d in mainline for arch/amd64/src/syscall.c


Ignore:
Timestamp:
2006-03-13T20:51:35Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5c089c3a
Parents:
25d7709
Message:

New synchronous ipc.
Widened syscall to support up to 5 parameters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/amd64/src/syscall.c

    r25d7709 r631ca4d  
    6464/** Dispatch system call */
    6565__native syscall_handler(__native a1, __native a2, __native a3,
    66                          __native id)
     66                         __native a4, __native id)
    6767{
    6868        if (id < SYSCALL_END)
    69                 return syscall_table[id](a1,a2,a3);
     69                return syscall_table[id](a1,a2,a3,a4);
    7070        else
    7171                panic("Undefined syscall %d", id);
Note: See TracChangeset for help on using the changeset viewer.