Changeset 06901c6b in mainline for uspace/srv/fs/tmpfs/tmpfs_ops.c
- Timestamp:
- 2008-04-14T05:15:16Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e13d1feb
- Parents:
- c9f6e49f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs_ops.c
rc9f6e49f r06901c6b 72 72 static void *tmpfs_match(void *, const char *); 73 73 static void *tmpfs_node_get(dev_handle_t, fs_index_t, fs_index_t); 74 static void tmpfs_node_put(void *); 74 75 static void *tmpfs_create_node(int); 75 76 static bool tmpfs_link_node(void *, void *, const char *); … … 122 123 .match = tmpfs_match, 123 124 .node_get = tmpfs_node_get, 125 .node_put = tmpfs_node_put, 124 126 .create = tmpfs_create_node, 125 127 .destroy = tmpfs_destroy_node, … … 274 276 return NULL; 275 277 return hash_table_get_instance(lnk, tmpfs_dentry_t, dh_link); 278 } 279 280 void tmpfs_node_put(void *node) 281 { 282 /* nothing to do */ 276 283 } 277 284
Note:
See TracChangeset
for help on using the changeset viewer.