mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-12 05:41:36 +00:00
parent
1c67e3bb43
commit
e1370b558e
@ -852,6 +852,9 @@ namespace File_system {
|
||||
{
|
||||
PWRN("File_system::Session::sigh not supported");
|
||||
}
|
||||
|
||||
/* ffat only supports fsync(2) */
|
||||
void sync() { }
|
||||
};
|
||||
|
||||
|
||||
|
@ -308,6 +308,13 @@ class File_system::Session_component : public Session_rpc_object
|
||||
{
|
||||
_handle_registry.sigh(node_handle, sigh);
|
||||
}
|
||||
|
||||
/**
|
||||
* We could call sync(2) here but for now we forward just the
|
||||
* reminder because besides testing, there is currently no
|
||||
* use-case.
|
||||
*/
|
||||
void sync() { PWRN("sync() not implemented!"); }
|
||||
};
|
||||
|
||||
|
||||
|
@ -411,6 +411,8 @@ namespace File_system {
|
||||
{
|
||||
_handle_registry.sigh(node_handle, sigh);
|
||||
}
|
||||
|
||||
void sync() { }
|
||||
};
|
||||
|
||||
|
||||
|
@ -424,6 +424,9 @@ namespace File_system {
|
||||
{
|
||||
PWRN("File_system::Session::sigh not supported");
|
||||
}
|
||||
|
||||
/* merely readonly, no need to sync */
|
||||
void sync() { }
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user