From dec408299ea7a2cb9aa9aa3ea3a3c72ee79169de Mon Sep 17 00:00:00 2001 From: Shehjar Tikoo Date: Tue, 5 May 2009 15:58:48 +0530 Subject: libglusterfsclient: Add remove API Signed-off-by: Anand V. Avati --- libglusterfsclient/src/libglusterfsclient.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'libglusterfsclient/src/libglusterfsclient.h') diff --git a/libglusterfsclient/src/libglusterfsclient.h b/libglusterfsclient/src/libglusterfsclient.h index 7c0c25062..37fcf04dd 100755 --- a/libglusterfsclient/src/libglusterfsclient.h +++ b/libglusterfsclient/src/libglusterfsclient.h @@ -1118,6 +1118,31 @@ glusterfs_glh_rename (glusterfs_handle_t handle, const char *oldpath, */ int glusterfs_rename (const char *oldpath, const char *newpath); + + + +/* Remove a file or directory in the given glusterfs context. + * + * @handle : Handle identifying the glusterfs context. + * @path : Path of the file or directory to be removed. + * + * + * Returns 0 on success and -1 on error with errno set appropriately. + */ +int +glusterfs_glh_remove (glusterfs_handle_t handle, const char *path); + + + +/* Remove a file or directory. + * + * @path : Path of the file or directory to be removed. The + * path must be pre-fixed with the VMP. + * + * Returns 0 on success and -1 on error with errno set appropriately. + */ +int +glusterfs_remove (const char *path); /* FIXME: review the need for these apis */ /* added for log related initialization in booster fork implementation */ void -- cgit