Added _kern_debug_output() syscall.

Fixed warning about missing user_strlcpy() prototype.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5354 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-11-13 22:08:30 +00:00
parent 9289abf0e4
commit 57b3bc3b9c
2 changed files with 5 additions and 0 deletions

View File

@ -14,6 +14,7 @@
#include <gdb.h>
#include <Errors.h>
#include <int.h>
#include <vm.h>
#include <arch/dbg_console.h>
#include <arch/debug.h>

View File

@ -423,6 +423,10 @@ syscall_dispatcher(unsigned long call_num, void *arg_buffer, uint64 *call_ret)
case SYSCALL_GETENV:
*call_ret = user_getenv((const char *)arg0, (char **)arg1);
break;
case SYSCALL_DEBUG_OUTPUT:
_user_debug_output((const char *)arg0);
break;
case SYSCALL_GET_THREAD_INFO:
*call_ret = user_get_thread_info((thread_id)arg0, (thread_info *)arg1);
break;