Changeset 41811af in mainline for kernel/generic/src/syscall/syscall.c


Ignore:
Timestamp:
2011-06-10T10:14:26Z (14 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ab547063
Parents:
9536e6e (diff), 390d80d (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

File:
1 edited

Legend:

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

    r9536e6e r41811af  
    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,
     
    144147        (syshandler_t) sys_as_area_destroy,
    145148        (syshandler_t) sys_as_get_unmapped_area,
     149       
     150        /* Page mapping related syscalls. */
     151        (syshandler_t) sys_page_find_mapping,
    146152       
    147153        /* IPC related syscalls. */
     
    174180        (syshandler_t) sys_unregister_irq,
    175181       
    176         /* Sysinfo syscalls */
     182        /* Sysinfo syscalls. */
    177183        (syshandler_t) sys_sysinfo_get_tag,
    178184        (syshandler_t) sys_sysinfo_get_value,
Note: See TracChangeset for help on using the changeset viewer.