Changeset 36d852c in mainline for uspace/app/tester/vfs/vfs1.c
- Timestamp:
- 2007-12-23T19:45:30Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 654b7db
- Parents:
- 5c786d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/vfs/vfs1.c
r5c786d1 r36d852c 54 54 aid_t req; 55 55 req = async_send_1(vfs_phone, VFS_MOUNT, TMPFS_DEVHANDLE, NULL); 56 if (ipc_data_ send(vfs_phone, fs_name, strlen(fs_name)) != EOK) {56 if (ipc_data_write_send(vfs_phone, fs_name, strlen(fs_name)) != EOK) { 57 57 async_wait_for(req, &rc); 58 58 return "Could not send fs_name to VFS.\n"; 59 59 } 60 if (ipc_data_ send(vfs_phone, mp, strlen(mp)) != EOK) {60 if (ipc_data_write_send(vfs_phone, mp, strlen(mp)) != EOK) { 61 61 async_wait_for(req, &rc); 62 62 return "Could not send mp to VFS.\n"; … … 71 71 ipc_call_t answer; 72 72 req = async_send_2(vfs_phone, VFS_OPEN, 0, 0, &answer); 73 if (ipc_data_ send(vfs_phone, path, strlen(path)) != EOK) {73 if (ipc_data_write_send(vfs_phone, path, strlen(path)) != EOK) { 74 74 async_wait_for(req, &rc); 75 75 return "Could not send path to VFS.\n";
Note:
See TracChangeset
for help on using the changeset viewer.