Ignore:
File:
1 edited

Legend:

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

    r1ea99cc r057d21a  
    5454#include <console/console.h>
    5555#include <udebug/udebug.h>
    56 
    57 /** Print a hex integer into klog */
    58 static unative_t sys_debug_putint(unative_t i)
    59 {
    60         printf("[task:0x%x]", i);
    61         return 0;
    62 }
    6356
    6457/** Dispatch system call */
     
    144137        (syshandler_t) sys_ipc_forward_slow,
    145138        (syshandler_t) sys_ipc_wait_for_call,
     139        (syshandler_t) sys_ipc_poke,
    146140        (syshandler_t) sys_ipc_hangup,
    147141        (syshandler_t) sys_ipc_register_irq,
     
    166160       
    167161        /* Debug calls */
    168         (syshandler_t) sys_debug_putint,
    169162        (syshandler_t) sys_debug_enable_console,
    170163        (syshandler_t) sys_debug_disable_console,
Note: See TracChangeset for help on using the changeset viewer.