mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:02:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			633 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 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()
 | |
| {
 | |
|     RefPtr<Thread> syncd_thread;
 | |
|     Process::create_kernel_process(syncd_thread, "SyncTask", [] {
 | |
|         dbgln("SyncTask is running");
 | |
|         for (;;) {
 | |
|             VFS::the().sync();
 | |
|             (void)Thread::current()->sleep(Time::from_seconds(1));
 | |
|         }
 | |
|     });
 | |
| }
 | |
| 
 | |
| }
 | 
