Changeset 1ea99cc in mainline for kernel/generic/src/syscall/syscall.c


Ignore:
Timestamp:
2009-08-20T20:47:35Z (16 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b50b5af2
Parents:
24edc18
Message:

Merge changes from original Subversion dynload branch.

File:
1 edited

Legend:

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

    r24edc18 r1ea99cc  
    5454#include <console/console.h>
    5555#include <udebug/udebug.h>
     56
     57/** Print a hex integer into klog */
     58static unative_t sys_debug_putint(unative_t i)
     59{
     60        printf("[task:0x%x]", i);
     61        return 0;
     62}
    5663
    5764/** Dispatch system call */
     
    159166       
    160167        /* Debug calls */
     168        (syshandler_t) sys_debug_putint,
    161169        (syshandler_t) sys_debug_enable_console,
    162170        (syshandler_t) sys_debug_disable_console,
Note: See TracChangeset for help on using the changeset viewer.