summaryrefslogtreecommitdiff
path: root/source3/include/vfs.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-05-02 03:20:47 +0000
committerJeremy Allison <jra@samba.org>2000-05-02 03:20:47 +0000
commitba020b0612ee975df15ceaf2eabf0cc3f208dc3e (patch)
treecaba9b545ebd4f9edf62da2da012481c119a957c /source3/include/vfs.h
parent693ffb8466ada58ecc59fde754ba79fc6f51528d (diff)
downloadsamba-ba020b0612ee975df15ceaf2eabf0cc3f208dc3e.tar.gz
samba-ba020b0612ee975df15ceaf2eabf0cc3f208dc3e.tar.bz2
samba-ba020b0612ee975df15ceaf2eabf0cc3f208dc3e.zip
Moved uglyness needed in fcntl locking (64->32 bit mapping, NFS
errors etc.) into locking/posix.c, where it is needed. fcntl_lock in lib/util.c is now very small and clean. Added (*lock) op to vfs layer. Jeremy. (This used to be commit 46092ee1410faa4e3c143d80a960a8adaa19d7fc)
Diffstat (limited to 'source3/include/vfs.h')
-rw-r--r--source3/include/vfs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h
index a09991a0e7..1b4e57f2ac 100644
--- a/source3/include/vfs.h
+++ b/source3/include/vfs.h
@@ -137,6 +137,7 @@ struct vfs_ops {
int (*chmod)(char *path, mode_t mode);
int (*utime)(char *path, struct utimbuf *times);
int (*ftruncate)(int fd, SMB_OFF_T offset);
+ BOOL (*lock)(int fd, int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
};
struct vfs_options {