diff options
author | Anand Avati <avati@redhat.com> | 2013-04-15 09:52:35 -0700 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2013-04-24 01:06:05 -0700 |
commit | 1bcb1c4d5225e197464d1c64bafd4e7ef4042e78 (patch) | |
tree | 7830fb42d61e6f8c845dc3199b7701007283eaee /api/src/glfs.h | |
parent | d37b2198dc8f763205f5b7e56a0e40252ccf97fe (diff) |
gfapi: POSIX locking support
Change-Id: I37d9e1fb4a715094876be6af3856c1b4cf398021
BUG: 953694
Signed-off-by: Anand Avati <avati@redhat.com>
Reviewed-on: http://review.gluster.org/4881
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'api/src/glfs.h')
-rw-r--r-- | api/src/glfs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/api/src/glfs.h b/api/src/glfs.h index 06849d0c731..7fecffb697a 100644 --- a/api/src/glfs.h +++ b/api/src/glfs.h @@ -453,6 +453,12 @@ int glfs_fchdir (glfs_fd_t *fd); char *glfs_realpath (glfs_t *fs, const char *path, char *resolved_path); +/* + * @cmd and @flock are as specified in man fcntl(2). + */ +int glfs_posix_lock (glfs_fd_t *fd, int cmd, struct flock *flock); + + __END_DECLS #endif /* !_GLFS_H */ |