Changeset a4eb8a60 in mainline for uspace/srv/fs/tmpfs/tmpfs.h
- Timestamp:
- 2007-12-22T22:58:57Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5c786d1
- Parents:
- c9957b6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.h
rc9957b6 ra4eb8a60 39 39 #include <sys/types.h> 40 40 #include <bool.h> 41 #include <libadt/hash_table.h> 41 42 42 43 #define dprintf(...) printf(__VA_ARGS__) 43 44 44 45 typedef struct tmpfs_dentry { 45 unsigned index; /**< TMPFS node index. */ 46 unsigned long index; /**< TMPFS node index. */ 47 link_t dh_link; /**< Dentries hash table link. */ 46 48 struct tmpfs_dentry *parent; 47 49 struct tmpfs_dentry *sibling; … … 60 62 61 63 extern void tmpfs_lookup(ipc_callid_t, ipc_call_t *); 64 extern void tmpfs_read(ipc_callid_t, ipc_call_t *); 62 65 63 66 #endif
Note:
See TracChangeset
for help on using the changeset viewer.