genode/repos/libports/src/lib/libc/internal/watch.h
Norman Feske 418ac4c560 libc: remove global watch() function
This patch replaces the function with a 'Watch' interface to be
explicitly passed to the caller (currently only time.cc).

Issue #3497
2019-11-19 14:10:55 +01:00

32 lines
636 B
C++

/*
* \brief Interface for watching files
* \author Norman Feske
* \date 2019-09-20
*/
/*
* Copyright (C) 2019 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _LIBC__INTERNAL__WATCH_H_
#define _LIBC__INTERNAL__WATCH_H_
/* libc-internal includes */
#include <internal/types.h>
namespace Libc {
struct Watch : Interface
{
/**
* Alloc new watch handler for given path
*/
virtual Vfs::Vfs_watch_handle *alloc_watch_handle(char const *path) = 0;
};
}
#endif /* _LIBC__INTERNAL__WATCH_H_ */