Changeset 00aece0 in mainline for uspace/lib/c/include/vfs/vfs_mtab.h
- Timestamp:
- 2012-02-18T16:47:38Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4449c6c
- Parents:
- bd5f3b7 (diff), f943dd3 (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. - File:
-
- 1 moved
-
uspace/lib/c/include/vfs/vfs_mtab.h (moved) (moved from uspace/lib/c/include/ns_obsolete.h ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/vfs/vfs_mtab.h
rbd5f3b7 r00aece0 1 1 /* 2 * Copyright (c) 20 06 Ondrej Palkovsky2 * Copyright (c) 2011 Maurizio Lombardi 3 3 * All rights reserved. 4 4 * … … 33 33 */ 34 34 35 #ifndef LIBC_ NS_OBSOLETE_H_36 #define LIBC_ NS_OBSOLETE_H_35 #ifndef LIBC_VFS_MTAB_H_ 36 #define LIBC_VFS_MTAB_H_ 37 37 38 38 #include <sys/types.h> 39 #include <task.h> 39 #include <ipc/vfs.h> 40 #include <adt/list.h> 40 41 41 extern int service_obsolete_connect(sysarg_t, sysarg_t, sysarg_t); 42 extern int service_obsolete_connect_blocking(sysarg_t, sysarg_t, 43 sysarg_t); 42 typedef struct mtab_ent { 43 link_t link; 44 char mp[MAX_PATH_LEN]; 45 char opts[MAX_MNTOPTS_LEN]; 46 char fs_name[FS_NAME_MAXLEN]; 47 unsigned int instance; 48 service_id_t service_id; 49 } mtab_ent_t; 44 50 45 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
