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