Changeset 6fe0bf8d in mainline for uspace/lib/c
- Timestamp:
- 2011-09-23T16:09:05Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1924bd43
- Parents:
- ac2c3f8f (diff), 286286c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace/lib/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/vfs/vfs.c
rac2c3f8f r6fe0bf8d 143 143 144 144 int mount(const char *fs_name, const char *mp, const char *fqsn, 145 const char *opts, unsigned int flags )145 const char *opts, unsigned int flags, unsigned int instance) 146 146 { 147 147 int null_id = -1; … … 181 181 182 182 sysarg_t rc_orig; 183 aid_t req = async_send_2(exch, VFS_IN_MOUNT, service_id, flags, NULL); 183 aid_t req = async_send_3(exch, VFS_IN_MOUNT, service_id, flags, 184 instance, NULL); 184 185 sysarg_t rc = async_data_write_start(exch, (void *) mpa, mpa_size); 185 186 if (rc != EOK) { -
uspace/lib/c/include/ipc/vfs.h
rac2c3f8f r6fe0bf8d 56 56 /** Unique identifier of the fs. */ 57 57 char name[FS_NAME_MAXLEN + 1]; 58 unsigned int instance; 58 59 bool concurrent_read_write; 59 60 bool write_retains_size; -
uspace/lib/c/include/vfs/vfs.h
rac2c3f8f r6fe0bf8d 49 49 50 50 extern int mount(const char *, const char *, const char *, const char *, 51 unsigned int );51 unsigned int, unsigned int); 52 52 extern int unmount(const char *); 53 53
Note:
See TracChangeset
for help on using the changeset viewer.