mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-16 14:18:27 +00:00
void sync(char const *path)
Sync now takes a path argument at VFS and File system interfaces. Issue #1648
This commit is contained in:
committed by
Christian Helmuth
parent
96d021b9d4
commit
2da239d0c8
@ -311,7 +311,7 @@ class File_system::Session_component : public Session_rpc_object
|
||||
* reminder because besides testing, there is currently no
|
||||
* use-case.
|
||||
*/
|
||||
void sync() { PWRN("sync() not implemented!"); }
|
||||
void sync(Node_handle) override { PWRN("sync() not implemented!"); }
|
||||
};
|
||||
|
||||
|
||||
|
@ -408,8 +408,6 @@ namespace File_system {
|
||||
{
|
||||
_handle_registry.sigh(node_handle, sigh);
|
||||
}
|
||||
|
||||
void sync() { }
|
||||
};
|
||||
|
||||
|
||||
|
@ -440,9 +440,6 @@ namespace File_system {
|
||||
{
|
||||
PWRN("File_system::Session::sigh not supported");
|
||||
}
|
||||
|
||||
/* merely readonly, no need to sync */
|
||||
void sync() { }
|
||||
};
|
||||
|
||||
|
||||
|
@ -914,8 +914,6 @@ class File_system::Session_component : public Session_rpc_object
|
||||
|
||||
void sigh(Node_handle node_handle, Signal_context_capability sigh) {
|
||||
_handle_registry.sigh(node_handle, sigh); }
|
||||
|
||||
void sync() { }
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user