Fixed warning in the real time stuff. Added empty user debugger functions
to keep things building. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11554 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -16,6 +16,7 @@ KernelStaticLibrary libppc :
|
|||||||
arch_system_info.c
|
arch_system_info.c
|
||||||
arch_thread.c
|
arch_thread.c
|
||||||
arch_timer.c
|
arch_timer.c
|
||||||
|
arch_user_debugger.cpp
|
||||||
arch_vm.cpp
|
arch_vm.cpp
|
||||||
arch_vm_translation_map.cpp
|
arch_vm_translation_map.cpp
|
||||||
arch_asm.S
|
arch_asm.S
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2005, Axel Dörfler, [email protected]
|
* Copyright 2005, Axel Dörfler, [email protected]
|
||||||
* Copyright 2003, Jeff Ward, [email protected]. All rights reserved.
|
|
||||||
*
|
|
||||||
* Distributed under the terms of the MIT License.
|
* Distributed under the terms of the MIT License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -13,6 +11,7 @@
|
|||||||
status_t
|
status_t
|
||||||
arch_rtc_init(kernel_args *args, struct real_time_data *data)
|
arch_rtc_init(kernel_args *args, struct real_time_data *data)
|
||||||
{
|
{
|
||||||
|
return B_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -27,3 +26,4 @@ void
|
|||||||
arch_rtc_set_hw_time(uint32 seconds)
|
arch_rtc_set_hw_time(uint32 seconds)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,77 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2005, Axel Dörfler, [email protected]
|
||||||
|
* Distributed under the terms of the MIT License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <debugger.h>
|
||||||
|
#include <int.h>
|
||||||
|
#include <thread.h>
|
||||||
|
#include <arch/user_debugger.h>
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
arch_clear_team_debug_info(struct arch_team_debug_info *info)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
arch_destroy_team_debug_info(struct arch_team_debug_info *info)
|
||||||
|
{
|
||||||
|
arch_clear_team_debug_info(info);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
arch_clear_thread_debug_info(struct arch_thread_debug_info *info)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
arch_destroy_thread_debug_info(struct arch_thread_debug_info *info)
|
||||||
|
{
|
||||||
|
arch_clear_thread_debug_info(info);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
arch_set_debug_cpu_state(const struct debug_cpu_state *cpuState)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
arch_get_debug_cpu_state(struct debug_cpu_state *cpuState)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
status_t
|
||||||
|
arch_set_breakpoint(void *address)
|
||||||
|
{
|
||||||
|
return B_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
status_t
|
||||||
|
arch_clear_breakpoint(void *address)
|
||||||
|
{
|
||||||
|
return B_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
status_t
|
||||||
|
arch_set_watchpoint(void *address, uint32 type, int32 length)
|
||||||
|
{
|
||||||
|
return B_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
status_t
|
||||||
|
arch_clear_watchpoint(void *address)
|
||||||
|
{
|
||||||
|
return B_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user