Changeset 457 for trunk/kernel/fs/devfs.c
- Timestamp:
- Aug 2, 2018, 11:47:13 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/fs/devfs.c
r438 r457 23 23 */ 24 24 25 #include <hal_ types.h>25 #include <hal_kernel_types.h> 26 26 #include <hal_special.h> 27 27 #include <hal_uspace.h> … … 99 99 #endif 100 100 101 // creates DEVFS "dev" inode in cluster IO102 error = vfs_add_child_in_parent( LOCAL_CLUSTER->io_cxy,101 // creates DEVFS "dev" inode in cluster 0 102 error = vfs_add_child_in_parent( 0, // cxy 103 103 INODE_TYPE_DIR, 104 104 FS_TYPE_DEVFS, … … 115 115 #endif 116 116 117 // create DEVFS "external" inode in cluster IO118 error = vfs_add_child_in_parent( LOCAL_CLUSTER->io_cxy,117 // create DEVFS "external" inode in cluster 0 118 error = vfs_add_child_in_parent( 0, // cxy 119 119 INODE_TYPE_DIR, 120 120 FS_TYPE_DEVFS,
Note: See TracChangeset
for help on using the changeset viewer.