mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 04:12:43 +00:00 
			
		
		
		
	 a1d7ebf85a
			
		
	
	
		a1d7ebf85a
		
	
	
	
	
		
			
			This directory isn't just about virtual memory, it's about all kinds of memory management.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| enum class PageFaultResponse {
 | |
|     ShouldCrash,
 | |
|     OutOfMemory,
 | |
|     Continue,
 | |
| };
 | |
| 
 | |
| }
 |