diff options
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/fs.defs | 19 | ||||
-rw-r--r-- | hurd/fsys.defs | 20 |
2 files changed, 21 insertions, 18 deletions
diff --git a/hurd/fs.defs b/hurd/fs.defs index 52d83bd5..24526826 100644 --- a/hurd/fs.defs +++ b/hurd/fs.defs @@ -352,3 +352,22 @@ routine file_reparent ( RPT parent: mach_port_t; out new_file: mach_port_send_t); + +/* Return any active translators bound to nodes below FILE. CHILDREN + is an argz vector containing file names relative to the root of the + receiving translator. */ +routine file_get_children ( + file: file_t; + RPT + out children: data_t); + +/* Return information about the source of FILE. If the concept of a + source is applicable, SOURCE should refer to the source of FILE and + should be a description considered appropriate in the context of + the translator. For example, if FILE refers to a node on a + filesystems, SOURCE should be the file name of the underlying block + device. */ +routine file_get_source ( + file: file_t; + RPT + out source: string_t); diff --git a/hurd/fsys.defs b/hurd/fsys.defs index 7f99f7ff..b36b9447 100644 --- a/hurd/fsys.defs +++ b/hurd/fsys.defs @@ -128,21 +128,5 @@ routine fsys_get_options ( RPT out options: data_t, dealloc); -/* Return any active translators bound to nodes of the receiving - filesystem. CHILDREN is an argz vector containing file names - relative to the root of the receiving translator. */ -routine fsys_get_children ( - server: fsys_t; - RPT - out children: data_t); - -/* Return information about the source of the receiving filesystem. - If the concept of a source is applicable, SOURCE should refer to - the source of the receiving translator and should be a description - considered appropriate in the context of the translator. For - example for the case of block device based filesystems, SOURCE - should be the file name of the underlying block device. */ -routine fsys_get_source ( - server: fsys_t; - RPT - out source: string_t); +skip; /* Was fsys_get_children */ +skip; /* Was fsys_get_source */ |