Changeset fe4ac35 in mainline
- Timestamp:
- 2011-03-18T19:56:21Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0d6ab10
- Parents:
- 44c0f5b
- Location:
- uspace/srv/fs/minixfs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs.h
r44c0f5b rfe4ac35 103 103 extern bool mfs_is_directory(fs_node_t *fsnode); 104 104 extern bool mfs_is_file(fs_node_t *fsnode); 105 extern int mfs_root_get(fs_node_t **rfn, devmap_handle_t handle); 105 106 extern devmap_handle_t mfs_device_get(fs_node_t *fsnode); 106 107 extern int mfs_instance_get(devmap_handle_t handle, -
uspace/srv/fs/minixfs/mfs_ops.c
r44c0f5b rfe4ac35 47 47 48 48 libfs_ops_t mfs_libfs_ops = { 49 .root_get = mfs_root_get, 49 50 .device_get = mfs_device_get, 50 51 .is_directory = mfs_is_directory, … … 294 295 } 295 296 297 int mfs_root_get(fs_node_t **rfn, devmap_handle_t handle) 298 { 299 return mfs_node_get(rfn, handle, MFS_ROOT_INO); 300 } 301 296 302 /* 297 303 * Find a filesystem instance given the devmap handle
Note:
See TracChangeset
for help on using the changeset viewer.