Ignore:
File:
1 edited

Legend:

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

    r516adce rd9fae235  
    5454#include <console/console.h>
    5555#include <udebug/udebug.h>
    56 #include <ps/ps.h>
    57 #include <ps/load.h>
    58 #include <ps/uptime.h>
    5956
    6057/** Dispatch system call */
     
    6360{
    6461        unative_t rc;
    65 
    66         /* Do userpace accounting */
    67         thread_update_accounting(true);
    6862
    6963#ifdef CONFIG_UDEBUG
     
    10195        }
    10296#endif
    103 
    104         /* Do kernel accounting */
    105         thread_update_accounting(false);
    10697       
    10798        return rc;
     
    162153       
    163154        /* Sysinfo syscalls */
    164         (syshandler_t) sys_sysinfo_valid,
    165         (syshandler_t) sys_sysinfo_value,
     155        (syshandler_t) sys_sysinfo_get_tag,
     156        (syshandler_t) sys_sysinfo_get_value,
     157        (syshandler_t) sys_sysinfo_get_data_size,
     158        (syshandler_t) sys_sysinfo_get_data,
    166159       
    167160        /* Debug calls */
    168161        (syshandler_t) sys_debug_enable_console,
    169162        (syshandler_t) sys_debug_disable_console,
    170 
    171         /* Ps calls */
    172         (syshandler_t) sys_ps_get_cpu_info,
    173         (syshandler_t) sys_ps_get_mem_info,
    174         (syshandler_t) sys_ps_get_tasks,
    175         (syshandler_t) sys_ps_get_task_info,
    176         (syshandler_t) sys_ps_get_threads,
    177         (syshandler_t) sys_ps_get_uptime,
    178         (syshandler_t) sys_ps_get_load,
    179163       
    180164        (syshandler_t) sys_ipc_connect_kbox
Note: See TracChangeset for help on using the changeset viewer.