table of contents
GFS_PIO_SENDFILE(3) | Gfarm | GFS_PIO_SENDFILE(3) |
NAME¶
gfs_pio_sendfile - receive a Gfarm file to local machine
SYNOPSIS¶
#include <gfarm/gfarm.h>
gfarm_error_t gfs_pio_sendfile(GFS_File w_gf, gfarm_off_t w_off, int r_fd, gfarm_off_t r_off, gfarm_off_t len, gfarm_off_t * sentp);
DESCRIPTION¶
Sends len bytes of data from the position specified by the offset r_off in a local file which is pointed by a file descriptor r_fd, to the position specified by the offset w_off of a Gfarm file w_gf. If len is -1, this function transfers until the end of the file. The transfered bytes will be stored to the memory pointed by sentp when sentp is not NULL. If len is a positive value, and the value pointed by sentp is less than len, that means the transfer reached EOF.
RETURN VALUES¶
GFARM_ERR_NO_ERROR
GFARM_ERR_OPERATION_NOT_PERMITTED
GFARM_ERR_BAD_FILE_DESCRIPTOR
GFARM_ERR_NO_FILE_SYSTEM_NODE
GFARM_ERR_NO_MEMORY
Others
SEE ALSO¶
gfs_pio_create(3), gfs_pio_open(3), gfs_pio_write(3), gfs_pio_recvfile(3)
12 Aug 2015 | Gfarm |