mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:42:43 +00:00 
			
		
		
		
	 9d21c79671
			
		
	
	
		9d21c79671
		
	
	
	
	
		
			
			This syscall doesn't touch any intra-process shared resources and only calls VirtualFileSystem::sync, which is self-locking.
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <Kernel/FileSystem/VirtualFileSystem.h>
 | |
| #include <Kernel/Process.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| KResultOr<FlatPtr> Process::sys$sync()
 | |
| {
 | |
|     VERIFY_NO_PROCESS_BIG_LOCK(this)
 | |
|     REQUIRE_PROMISE(stdio);
 | |
|     VirtualFileSystem::sync();
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| }
 |