Changeset a4eb8a60 in mainline for uspace/srv/fs/tmpfs/tmpfs.h


Ignore:
Timestamp:
2007-12-22T22:58:57Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5c786d1
Parents:
c9957b6
Message:

VFS work.
Foundation for TMPFS-side VFS_READ and fixes in VFS-side VFS_READ.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/tmpfs/tmpfs.h

    rc9957b6 ra4eb8a60  
    3939#include <sys/types.h>
    4040#include <bool.h>
     41#include <libadt/hash_table.h>
    4142
    4243#define dprintf(...)    printf(__VA_ARGS__)
    4344
    4445typedef 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. */
    4648        struct tmpfs_dentry *parent;
    4749        struct tmpfs_dentry *sibling;
     
    6062
    6163extern void tmpfs_lookup(ipc_callid_t, ipc_call_t *);
     64extern void tmpfs_read(ipc_callid_t, ipc_call_t *);
    6265
    6366#endif
Note: See TracChangeset for help on using the changeset viewer.