Man page - gfarm_initialize(3)
Packages contas this manual
- gfs_pio_create(3)
- gfarm_initialize(3)
- gfs_acl_init(3)
- gfs_acl_from_xattr_value(3)
- gfs_acl_dup(3)
- gfs_unlink(3)
- gfs_acl_get_entry(3)
- gfs_acl_delete_entry(3)
- gfs_pio_sendfile(3)
- gfs_pio_seek(3)
- gfs_acl_delete_perm(3)
- gfs_acl_sort(3)
- gfs_acl_equiv_mode(3)
- gfs_acl_to_text(3)
- gfs_pio_recvfile(3)
- gfs_acl_valid(3)
- gfs_mkdir(3)
- gfs_acl_free(3)
- gfs_acl_get_perm(3)
- gfs_acl_to_xattr_value(3)
- gfs_acl_add_perm(3)
- gfarm(3)
- gfs_acl_check(3)
- gfarm_terminate(3)
- gfs_pio_read(3)
- gfs_pio_sync(3)
- gfs_acl_delete_def_file(3)
- gfs_pio_write(3)
- gfs_acl_get_tag_type(3)
- gfs_acl_set_permset(3)
- gfs_pio_open(3)
- gfs_stat_free(3)
- gfs_acl_set_tag_type(3)
- gfs_pio_close(3)
- gfs_rmdir(3)
- gfs_acl_calc_mask(3)
- gfs_pio_flush(3)
- gfs_acl_set_qualifier(3)
- gfs_acl_from_mode(3)
- gfs_acl_from_text(3)
- gfs_stat(3)
- gfs_acl_get_qualifier(3)
- gfs_acl_entries(3)
- gfs_acl_set_file(3)
- gfs_acl_error(3)
- gfs_acl_to_any_text(3)
- gfs_acl_get_permset(3)
- gfs_pio_datasync(3)
- gfs_acl_cmp(3)
- gfs_acl_clear_perms(3)
- gfs_acl_get_file(3)
- gfs_acl_from_text_with_default(3)
- gfs_acl_create_entry(3)
Package: libgfarm-dev
apt-get install libgfarm-dev
apt-get install libgfarm-dev
Manuals in package:
Documentations in package:
Available languages:
en jaManual
| GFARM_INITIALIZE(3) | Gfarm | GFARM_INITIALIZE(3) |
NAME
gfarm_initialize - initialize the Gfarm execution environment for client
SYNOPSIS
#include <gfarm/gfarm.h>
gfarm_error_t gfarm_initialize(int *argcp, char *** argvp);
DESCRIPTION
gfarm_initialize() initializes the Gfarm execution environment for client application. This function should be called before any Gfarm library API. argcp is a pointer to the number of arguments and argvp is a pointer to the argument vector.
RETURN VALUES
GFARM_ERR_NO_ERROR
The function terminated successfully.
GFARM_ERR_NO_MEMORY
Insufficient memory was available.
GFARM_ERR_UNKNOWN_HOST
The metadata server cannot be resolved.
GFARM_ERR_NETWORK_IS_UNREACHABLE
Network is unrechable.
GFARM_ERR_OPERATION_TIMED_OUT
Connetion timeout occurs.
GFARM_ERR_PROTOCOL
Protocol error occurs.
GFARM_ERR_BROKEN_PIPE
Connection to the metadata server is broken.
GFARM_ERR_PERMISSION_DENIED
The requested access to the file is not allowed, or one
of the directories in gfarm_url did not allow search (execute)
permission. Or, the authentication to the metadata server fails.
GFARM_ERR_PROTOCOL_NOT_SUPPORTED
Specified authentication protocol is not supported.
GFARM_ERR_AUTHENTICATION
User authentication failed when connecting to the
metadata server.
Others
An error except the above occurred. The reason is shown
by its gfarm_error_string(3).
SEE ALSO
gfarm_terminate(3)
| 26 Jun 2010 | Gfarm |