Changeset e1e3b26 in mainline for uspace/srv/fs/tmpfs/tmpfs_ops.c


Ignore:
Timestamp:
2008-04-10T05:08:30Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e22632a9
Parents:
44882c8
Message:

Commit progress on the FAT file system server implementation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/tmpfs/tmpfs_ops.c

    r44882c8 re1e3b26  
    7171/* Forward declarations of static functions. */
    7272static void *tmpfs_match(void *, const char *);
    73 static void *tmpfs_node_get(dev_handle_t, fs_index_t);
     73static void *tmpfs_node_get(dev_handle_t, fs_index_t, fs_index_t);
    7474static void *tmpfs_create_node(int);
    7575static bool tmpfs_link_node(void *, void *, const char *);
     
    267267
    268268void *
    269 tmpfs_node_get(dev_handle_t dev_handle, fs_index_t index)
     269tmpfs_node_get(dev_handle_t dev_handle, fs_index_t index, fs_index_t pindex)
    270270{
    271271        unsigned long key = index;
Note: See TracChangeset for help on using the changeset viewer.