The set_flags() call was missing from the FS interface.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9198 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-10-05 13:22:00 +00:00
parent ae1b76c11e
commit 752c2e981e
1 changed files with 1 additions and 0 deletions

View File

@ -81,6 +81,7 @@ typedef struct file_system_info {
/* common operations */
status_t (*ioctl)(fs_volume fs, fs_vnode v, fs_cookie cookie, ulong op, void *buffer, size_t length);
status_t (*set_flags)(fs_volume fs, fs_vnode v, fs_cookie cookie, int flags);
status_t (*fsync)(fs_volume fs, fs_vnode v);
ssize_t (*read_link)(fs_volume fs, fs_vnode link, char *buffer, size_t bufferSize);