Changeset f2ec8c8 in mainline for uspace/srv/vfs/vfs_register.c
- Timestamp:
- 2008-03-11T20:33:53Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 923c39e
- Parents:
- 8ad8e49
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_register.c
r8ad8e49 rf2ec8c8 295 295 * system a global file system handle. 296 296 */ 297 fs_info->fs_handle = ( int) atomic_postinc(&fs_handle_next);297 fs_info->fs_handle = (fs_handle_t) atomic_postinc(&fs_handle_next); 298 298 ipc_answer_1(rid, EOK, (ipcarg_t) fs_info->fs_handle); 299 299 … … 312 312 * sent. Return 0 if no phone was found. 313 313 */ 314 int vfs_grab_phone( int handle)314 int vfs_grab_phone(fs_handle_t handle) 315 315 { 316 316 /* … … 387 387 * @return File system handle or zero if file system not found. 388 388 */ 389 int fs_name_to_handle(char *name, bool lock)389 fs_handle_t fs_name_to_handle(char *name, bool lock) 390 390 { 391 391 int handle = 0;
Note:
See TracChangeset
for help on using the changeset viewer.