xref: /haiku/src/system/runtime_loader/arch/arm/arch_relocate.cpp (revision 8d2bf6953e851d431fc67de1bc970c40afa79e9f)
1 /*
2  * Copyright 2012, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Ithamar R. Adema <ithamar@upgrade-android.com>
7  */
8 
9 #include <string.h>
10 #include <stdio.h>
11 #include <stdlib.h>
12 
13 #include "runtime_loader_private.h"
14 
15 #include <runtime_loader.h>
16 
17 //#define TRACE_RLD
18 #ifdef TRACE_RLD
19 #	define TRACE(x) dprintf x
20 #else
21 #	define TRACE(x) ;
22 #endif
23 
24 void *__dso_handle;
25 
26 status_t
27 arch_relocate_image(image_t *rootImage, image_t *image,
28 	SymbolLookupCache* cache)
29 {
30 	debugger("arch_relocate_image: Not Yet Implemented!");
31 	return B_OK;
32 }
33