Made the debugger() call a bit more useful - this is still no real implementation, of course.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8243 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-06-30 02:59:44 +00:00
parent 176a4ebc28
commit e54c578346

View File

@ -1,5 +1,5 @@
/*
** Copyright 2002, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
@ -7,11 +7,18 @@
#include <OS.h>
#include "syscalls.h"
#include <stdio.h>
#include <stdlib.h>
void
debugger(const char *message)
{
// ToDo: implement debugger()
// ToDo: implement debugger() properly
puts("*** debugger call - not yet implemented ***");
printf("%s\n", message);
abort();
}