arm64: Add more random scripts to get stuff to compile

Signed-off-by: Jaroslaw Pelczar <[email protected]>
Change-Id: Ie043af5b7471f626a1ffe100848151c832dcc439
Reviewed-on: https://review.haiku-os.org/c/haiku/+/1853
Reviewed-by: Alex von Gluck IV <[email protected]>
This commit is contained in:
Jaroslaw Pelczar
2020-01-25 08:50:51 +00:00
committed by Adrien Destugues
parent 80f7396496
commit cbdb30f467
26 changed files with 875 additions and 2 deletions
@@ -0,0 +1,23 @@
/*
* Copyright 2019, Haiku, Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include <debug_support.h>
#include "arch_debug_support.h"
status_t
arch_debug_get_instruction_pointer(debug_context *context, thread_id thread,
void **ip, void **stackFrameAddress)
{
return B_ERROR;
}
status_t
arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress,
debug_stack_frame_info *stackFrameInfo)
{
return B_ERROR;
}