mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:42:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			320 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			320 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/AKString.h>
 | |
| #include <AK/Vector.h>
 | |
| 
 | |
| struct KSym {
 | |
|     dword address;
 | |
|     const char* name;
 | |
| };
 | |
| 
 | |
| const KSym* ksymbolicate(dword address);
 | |
| void load_ksyms();
 | |
| void init_ksyms();
 | |
| 
 | |
| extern bool ksyms_ready;
 | |
| extern dword ksym_lowest_address;
 | |
| extern dword ksym_highest_address;
 | |
| 
 | |
| void dump_backtrace();
 | 
