Changeset 7171760 in mainline for uspace/lib/c/include/vfs/vfs.h
- Timestamp:
- 2011-08-18T12:05:00Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b33ec43
- Parents:
- 866e627
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/vfs/vfs.h
r866e627 r7171760 46 46 }; 47 47 48 /** Libc version of the VFS triplet.49 *50 * Unique identification of a file system node51 * within a file system instance.52 *53 */54 typedef struct fdi_node {55 fs_handle_t fs_handle;56 devmap_handle_t devmap_handle;57 fs_index_t index;58 } fdi_node_t;59 60 48 extern char *absolutize(const char *, size_t *); 61 49 … … 64 52 extern int unmount(const char *); 65 53 66 extern int open_node(fdi_node_t *, int); 67 extern int fd_node(int, fdi_node_t *); 68 69 extern FILE *fopen_node(fdi_node_t *, const char *); 70 extern int fnode(FILE *, fdi_node_t *); 54 extern FILE *fopen_handle(int); 55 extern int fhandle(FILE *, int *); 71 56 72 57 extern async_exch_t *vfs_exchange_begin(void);
Note:
See TracChangeset
for help on using the changeset viewer.