mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:32:43 +00:00 
			
		
		
		
	 142abc0b2e
			
		
	
	
		142abc0b2e
		
	
	
	
	
		
			
			InodeWatcherFlags is an enumeration from the Kernel. To avoid using it outside of Serenity, add a FileWatcherFlags for FileWatcher, much like we already have FileWatcherEvent::Type.
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			791 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			791 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
 | |
|  * Copyright (c) 2021, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include "FileWatcher.h"
 | |
| #include <LibCore/Notifier.h>
 | |
| #include <errno.h>
 | |
| 
 | |
| namespace Core {
 | |
| 
 | |
| ErrorOr<NonnullRefPtr<FileWatcher>> FileWatcher::create(FileWatcherFlags)
 | |
| {
 | |
|     return Error::from_errno(ENOTSUP);
 | |
| }
 | |
| 
 | |
| FileWatcher::FileWatcher(int watcher_fd, NonnullRefPtr<Notifier> notifier)
 | |
|     : FileWatcherBase(watcher_fd)
 | |
|     , m_notifier(move(notifier))
 | |
| {
 | |
| }
 | |
| 
 | |
| FileWatcher::~FileWatcher() = default;
 | |
| 
 | |
| ErrorOr<bool> FileWatcherBase::add_watch(DeprecatedString, FileWatcherEvent::Type)
 | |
| {
 | |
|     return Error::from_errno(ENOTSUP);
 | |
| }
 | |
| 
 | |
| ErrorOr<bool> FileWatcherBase::remove_watch(DeprecatedString)
 | |
| {
 | |
|     return Error::from_errno(ENOTSUP);
 | |
| }
 | |
| 
 | |
| }
 |