Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2679 → Rev 2680

/trunk/uspace/srv/vfs/vfs.h
36,6 → 36,7
#include <ipc/ipc.h>
#include <libadt/list.h>
#include <atomic.h>
#include <rwlock.h>
#include <sys/types.h>
#include <bool.h>
 
135,8 → 136,8
unsigned refcnt; /**< Usage counter. */
link_t nh_link; /**< Node hash-table link. */
 
/** Holding this futex prevents modifications of the node's contents. */
atomic_t contents_futex;
/** Holding this rwlock prevents modifications of the node's contents. */
atomic_t contents_rwlock;
} vfs_node_t;
 
/**