blob: 03cf623d6969e401bc58928a8c48bdc04a902e33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* symbols-dummy.c: dummy symbol-table definitions for the inital partial
* link of the hypervisor image.
*/
#include <xen/types.h>
#include <xen/symbols.h>
#ifdef SYMBOLS_ORIGIN
const unsigned int symbols_offsets[1];
#else
const unsigned long symbols_addresses[1];
#endif
const unsigned int symbols_num_syms;
const u8 symbols_names[1];
#ifdef CONFIG_FAST_SYMBOL_LOOKUP
const struct symbol_offset symbols_sorted_offsets[1];
#endif
const u8 symbols_token_table[1];
const u16 symbols_token_index[1];
const unsigned int symbols_markers[1];
|