Renamed fs_id to mount_id.

Moved typedefs for mount_id and vnode_id to fs_interface.h.
Removed some unused stuff in ktypes.h.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1173 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2002-09-25 13:57:06 +00:00
parent ba8080175e
commit 4dc5ecd3cb
3 changed files with 7 additions and 20 deletions
+3 -1
View File
@@ -13,6 +13,8 @@ struct dirent;
struct stat;
struct fs_info;
typedef dev_t mount_id;
typedef ino_t vnode_id;
/* the file system's private data structures */
typedef void *fs_volume;
@@ -40,7 +42,7 @@ extern "C" {
struct fs_calls {
/* general operations */
status_t (*mount)(fs_id id, const char *device, void *args, fs_volume *_fs, vnode_id *_rootVnodeID);
status_t (*mount)(mount_id id, const char *device, void *args, fs_volume *_fs, vnode_id *_rootVnodeID);
status_t (*unmount)(fs_volume fs);
status_t (*read_fs_info)(fs_volume fs, struct fs_info *info);