Changeset cb65bbe in mainline for uspace/lib/c/include/ipc/vfs.h
- Timestamp:
- 2013-07-23T22:43:48Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0b18364
- Parents:
- c442f63
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/vfs.h
rc442f63 rcb65bbe 82 82 VFS_IN_WAIT_HANDLE, 83 83 VFS_IN_MTAB_GET, 84 VFS_IN_WALK, 85 VFS_IN_OPEN2, 84 86 } vfs_in_request_t; 85 87 … … 168 170 #define L_OPEN 256 169 171 172 /* 173 * Walk flags. 174 */ 175 enum { 176 /** 177 * WALK_PARTIAL requests that if the whole path cannot be traversed, 178 * the walk() operation should return the last visited file, along 179 * with an indication of how many directories have been traversed. 180 */ 181 //WALK_PARTIAL = (1 << 0), 182 183 WALK_ALL_FLAGS = 0, 184 }; 185 186 enum { 187 MODE_READ = 1, 188 MODE_WRITE = 2, 189 MODE_APPEND = 4, 190 }; 191 170 192 #endif 171 193
Note:
See TracChangeset
for help on using the changeset viewer.