Changeset c7c0b89b in mainline for generic/src/syscall/syscall.c


Ignore:
Timestamp:
2006-04-22T18:05:16Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
613bc54
Parents:
68091bd
Message:

Added uspace call to enable/disable interrupts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/syscall/syscall.c

    r68091bd rc7c0b89b  
    6565}
    6666
     67static __native sys_int_control(int enable)
     68{
     69        panic("Not implemented.");
     70}
     71
    6772/** Dispatch system call */
    6873__native syscall_handler(__native a1, __native a2, __native a3,
     
    7883        sys_io,
    7984        sys_tls_set,
     85        sys_int_control,
    8086        sys_thread_create,
    8187        sys_thread_exit,
Note: See TracChangeset for help on using the changeset viewer.