diff options
Diffstat (limited to 'libglusterfs/src/glusterfs/syscall.h')
| -rw-r--r-- | libglusterfs/src/glusterfs/syscall.h | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/libglusterfs/src/glusterfs/syscall.h b/libglusterfs/src/glusterfs/syscall.h index 6b33c141a5e..91e921aea50 100644 --- a/libglusterfs/src/glusterfs/syscall.h +++ b/libglusterfs/src/glusterfs/syscall.h @@ -96,18 +96,27 @@ int  sys_unlink(const char *pathname);  int +sys_unlinkat(int dfd, const char *pathname); + +int  sys_rmdir(const char *pathname);  int  sys_symlink(const char *oldpath, const char *newpath);  int +sys_symlinkat(const char *oldpath, int dirfd, const char *newpath); + +int  sys_rename(const char *oldpath, const char *newpath);  int  sys_link(const char *oldpath, const char *newpath);  int +sys_linkat(int oldfd, const char *oldpath, int newfd, const char *newpath); + +int  sys_chmod(const char *path, mode_t mode);  int  | 
