The private data field in struct file_descriptor is now a union (that can
currently hold a pointer to a fs_mount, or a vnode). Updated the index_dir part of the fs API. Added FDTYPE_INDEX_DIR in fd.h. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1188 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
|
||||
|
||||
struct file_descriptor;
|
||||
struct fs_mount;
|
||||
struct vnode;
|
||||
|
||||
/** The I/O context of a process/team, holds the fd array */
|
||||
@@ -43,7 +44,10 @@ struct file_descriptor {
|
||||
int32 type; /* descriptor type */
|
||||
int32 ref_count;
|
||||
struct fd_ops *ops;
|
||||
struct vnode *vnode;
|
||||
union {
|
||||
struct vnode *vnode;
|
||||
struct fs_mount *mount;
|
||||
} u;
|
||||
void *cookie;
|
||||
int32 open_mode;
|
||||
};
|
||||
@@ -55,8 +59,9 @@ enum fd_types {
|
||||
FDTYPE_FILE = 1,
|
||||
FDTYPE_ATTR,
|
||||
FDTYPE_DIR,
|
||||
FDTYPE_ATTRDIR,
|
||||
FDTYPE_ATTR_DIR,
|
||||
FDTYPE_INDEX,
|
||||
FDTYPE_INDEX_DIR,
|
||||
FDTYPE_QUERY,
|
||||
FDTYPE_SOCKET
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user