Changeset 6843a9c in mainline for uspace/lib/c/include/vfs/vfs_mtab.h
- Timestamp:
- 2012-06-29T13:02:14Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 722912e
- Parents:
- ba72f2b (diff), 0bbd13e (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
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/vfs/vfs_mtab.h
rba72f2b r6843a9c 1 1 /* 2 * Copyright (c) 20 09 Lukas Mejdrech2 * Copyright (c) 2011 Maurizio Lombardi 3 3 * All rights reserved. 4 4 * … … 30 30 * @{ 31 31 */ 32 33 32 /** @file 34 * Transport layer modules messages.35 * @see tl_interface.h36 33 */ 37 34 38 #ifndef LIBC_ TL_MESSAGES_H_39 #define LIBC_ TL_MESSAGES_H_35 #ifndef LIBC_VFS_MTAB_H_ 36 #define LIBC_VFS_MTAB_H_ 40 37 41 #include <ipc/net.h> 38 #include <sys/types.h> 39 #include <ipc/vfs.h> 40 #include <adt/list.h> 42 41 43 /** Transport layer modules messages. */ 44 typedef enum { 45 /** Packet received message. 46 * @see tl_received_msg() 47 */ 48 NET_TL_RECEIVED = NET_TL_FIRST 49 } tl_messages; 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; 50 50 51 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.