xref: /haiku/src/system/runtime_loader/arch/arm64/arch_relocate.cpp (revision cbe0a0c436162d78cc3f92a305b64918c839d079)
1 /*
2  * Copyright 2019 Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #include <string.h>
7 #include <stdio.h>
8 #include <stdlib.h>
9 
10 #include "runtime_loader_private.h"
11 
12 #include <runtime_loader.h>
13 
14 
15 //#define TRACE_RLD
16 #ifdef TRACE_RLD
17 #	define TRACE(x) dprintf x
18 #else
19 #	define TRACE(x) ;
20 #endif
21 
22 
23 status_t
24 arch_relocate_image(image_t *rootImage, image_t *image,
25 	SymbolLookupCache* cache)
26 {
27 	debugger("arch_relocate_image: Not Yet Implemented!");
28 	return B_OK;
29 }
30