mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:02:44 +00:00 
			
		
		
		
	 7950f5cb51
			
		
	
	
		7950f5cb51
		
	
	
	
	
		
			
			ProcessInspector is an abstract base class for an object that can inspect the address space of a process. Concrete sub classes need to implement methods for peeking & poking memory and walking the loaded libraries. It is currently only implemented by DebugSession.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			389 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			389 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(SOURCES
 | |
|     DebugInfo.cpp
 | |
|     DebugSession.cpp
 | |
|     Dwarf/AbbreviationsMap.cpp
 | |
|     Dwarf/AddressRanges.cpp
 | |
|     Dwarf/AttributeValue.cpp
 | |
|     Dwarf/CompilationUnit.cpp
 | |
|     Dwarf/DIE.cpp
 | |
|     Dwarf/DwarfInfo.cpp
 | |
|     Dwarf/Expression.cpp
 | |
|     Dwarf/LineProgram.cpp
 | |
|     ProcessInspector.cpp
 | |
|     StackFrameUtils.cpp
 | |
| )
 | |
| 
 | |
| serenity_lib(LibDebug debug)
 | |
| target_link_libraries(LibDebug LibC LibRegex)
 |