mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:02:45 +00:00 
			
		
		
		
	 0fbeac6011
			
		
	
	
		0fbeac6011
		
	
	
	
	
		
			
			A new header file has been created in the Arch/ folder while the implementation has been moved into a CPP living in the X86 folder.
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			287 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			287 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Types.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| class SmapDisabler {
 | |
| public:
 | |
|     SmapDisabler();
 | |
|     ~SmapDisabler();
 | |
| 
 | |
| private:
 | |
|     const FlatPtr m_flags;
 | |
| };
 | |
| 
 | |
| }
 |