Changeset 0a1a313 in mainline
- Timestamp:
- 2009-10-07T10:58:07Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b988db0
- Parents:
- 100aaf5
- Location:
- contrib/arch/uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/uspace/lib/libfs/fnc.libfs_mount
r100aaf5 r0a1a313 4 4 alternative (fs; tmpfs; fat; devfs) { 5 5 !fs.ipc_m_connect_to_me ; 6 !fs.mounted ; 7 !fs.ipc_m_data_write /* forward */ 6 !fs.mounted { 7 !fs.ipc_m_data_write /* forward */ 8 } 8 9 } 9 10 } -
contrib/arch/uspace/srv/vfs/vfs.bp
r100aaf5 r0a1a313 22 22 /* root fs */ 23 23 alternative (fs; tmpfs; fat; devfs) { 24 !fs.mounted ; 25 !fs.ipc_m_data_write /* mount options */ 24 !fs.mounted { 25 !fs.ipc_m_data_write /* mount options */ 26 } 26 27 } 27 28 ) + … … 93 94 alternative (fs; tmpfs; fat; devfs) { 94 95 [fnc.vfs_grab_phone] ; 95 !fs.read ; 96 !fs.ipc_m_data_read /* forward payload */ ; 96 !fs.read { 97 !fs.ipc_m_data_read /* forward payload */ ; 98 } ; 97 99 [fnc.vfs_release_phone] 98 100 } … … 106 108 alternative (fs; tmpfs; fat; devfs) { 107 109 [fnc.vfs_grab_phone] ; 108 !fs.write ; 109 !fs.ipc_m_data_write /* forward payload */ ; 110 !fs.write { 111 !fs.ipc_m_data_write /* forward payload */ ; 112 } ; 110 113 [fnc.vfs_release_phone] 111 114 } … … 129 132 alternative (fs; tmpfs; fat; devfs) { 130 133 [fnc.vfs_grab_phone] ; 131 !fs.stat ; 132 !fs.ipc_m_data_read /* forward struct stat */ ; 134 !fs.stat { 135 !fs.ipc_m_data_read /* forward struct stat */ ; 136 } ; 133 137 [fnc.vfs_release_phone] 134 138 } … … 144 148 [fnc.vfs_lookup_internal] ; 145 149 tentative { 146 !fs.stat ; 147 !fs.ipc_m_data_read /* forward struct stat */ 150 !fs.stat { 151 !fs.ipc_m_data_read /* forward struct stat */ 152 } 148 153 } 149 154 }
Note:
See TracChangeset
for help on using the changeset viewer.