Ignore:
Timestamp:
2011-06-10T19:33:41Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1878386
Parents:
13ecdac9 (diff), 79a141a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

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

    r13ecdac9 r1affcdf3  
    4141#include <proc/program.h>
    4242#include <mm/as.h>
     43#include <mm/page.h>
    4344#include <print.h>
    4445#include <arch.h>
     
    118119
    119120syshandler_t syscall_table[SYSCALL_END] = {
     121        /* System management syscalls. */
    120122        (syshandler_t) sys_klog,
    121123        (syshandler_t) sys_tls_set,
     
    126128        (syshandler_t) sys_thread_get_id,
    127129        (syshandler_t) sys_thread_usleep,
     130        (syshandler_t) sys_thread_udelay,
    128131       
    129132        (syshandler_t) sys_task_get_id,
     
    145148        (syshandler_t) sys_as_get_unmapped_area,
    146149       
     150        /* Page mapping related syscalls. */
     151        (syshandler_t) sys_page_find_mapping,
     152       
    147153        /* IPC related syscalls. */
    148154        (syshandler_t) sys_ipc_call_sync_fast,
     
    161167        /* Event notification syscalls. */
    162168        (syshandler_t) sys_event_subscribe,
     169        (syshandler_t) sys_event_unmask,
    163170       
    164171        /* Capabilities related syscalls. */
     
    173180        (syshandler_t) sys_unregister_irq,
    174181       
    175         /* Sysinfo syscalls */
     182        /* Sysinfo syscalls. */
    176183        (syshandler_t) sys_sysinfo_get_tag,
    177184        (syshandler_t) sys_sysinfo_get_value,
Note: See TracChangeset for help on using the changeset viewer.