Changeset 6a44ee4 in mainline for kernel/generic/src/syscall/syscall.c


Ignore:
Timestamp:
2011-07-20T15:26:21Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
efcebe1
Parents:
25bef0ff (diff), a701812 (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

    r25bef0ff r6a44ee4  
    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,
     
    180186        (syshandler_t) sys_sysinfo_get_data,
    181187       
    182         /* Debug calls */
    183         (syshandler_t) sys_debug_enable_console,
    184         (syshandler_t) sys_debug_disable_console
     188        /* Kernel console syscalls. */
     189        (syshandler_t) sys_debug_activate_console
    185190};
    186191
Note: See TracChangeset for help on using the changeset viewer.