Changeset 6d9c49a in mainline for arch/amd64/src/syscall.c


Ignore:
Timestamp:
2006-03-13T19:39:30Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
45d6add
Parents:
78a95d6f
Message:

Added kernel IPC functionality.

File:
1 edited

Legend:

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

    r78a95d6f r6d9c49a  
    6363
    6464/** Dispatch system call */
    65 __native syscall_handler(__native id, __native a1, __native a2, __native a3)
     65__native syscall_handler(__native a1, __native a2, __native a3,
     66                         __native id)
    6667{
    67         interrupts_enable();
    6868        if (id < SYSCALL_END)
    6969                return syscall_table[id](a1,a2,a3);
    7070        else
    7171                panic("Undefined syscall %d", id);
    72         interrupts_disable();
    7372}
Note: See TracChangeset for help on using the changeset viewer.