mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:12:43 +00:00 
			
		
		
		
	 8289759f1d
			
		
	
	
		8289759f1d
		
	
	
	
	
		
			
			This is quite useful for userspace applications that can't cope with the restriction, but it's still useful to impose other non-configurable restrictions by using jails.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			299 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			299 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/EnumBits.h>
 | |
| #include <AK/Types.h>
 | |
| 
 | |
| enum class JailIsolationFlags : u32 {
 | |
|     None = 0,
 | |
|     PIDIsolation = 1 << 0,
 | |
| };
 | |
| 
 | |
| AK_ENUM_BITWISE_OPERATORS(JailIsolationFlags);
 |