mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:02:44 +00:00 
			
		
		
		
	 a098266ff5
			
		
	
	
		a098266ff5
		
	
	
	
	
		
			
			- Instead of taking the first new thread as an out-parameter, we now bundle the process and its first thread in a struct and use that as the return value. - Make all Process factory functions return ErrorOr. Use this to convert some places to more TRY(). - Drop the "try_" prefix on Process factory functions.
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			633 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			633 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <Kernel/FileSystem/VirtualFileSystem.h>
 | |
| #include <Kernel/Process.h>
 | |
| #include <Kernel/Sections.h>
 | |
| #include <Kernel/Tasks/SyncTask.h>
 | |
| #include <Kernel/Time/TimeManagement.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| UNMAP_AFTER_INIT void SyncTask::spawn()
 | |
| {
 | |
|     MUST(Process::create_kernel_process(KString::must_create("VFS Sync Task"sv), [] {
 | |
|         dbgln("VFS SyncTask is running");
 | |
|         for (;;) {
 | |
|             VirtualFileSystem::sync();
 | |
|             (void)Thread::current()->sleep(Time::from_seconds(1));
 | |
|         }
 | |
|     }));
 | |
| }
 | |
| 
 | |
| }
 |