Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

globus_errno_error_accessor(3) [debian man page]

Error Data Accessors and Modifiers(3)				   globus common			     Error Data Accessors and Modifiers(3)

NAME
Error Data Accessors and Modifiers - Get Errno int globus_error_errno_get_errno (globus_object_t *error) Set Errno void globus_error_errno_set_errno (globus_object_t *error, const int system_errno) Detailed Description Get and set data in a Globus Errno Error object. This section defines operations for accessing and modifying data in a Globus Errno Error object. Function Documentation int globus_error_errno_get_errno (globus_object_t *error) Retrieve the system errno from a errno error object. Parameters: error The error from which to retrieve the errno Returns: The errno stored in the object void globus_error_errno_set_errno (globus_object_t *error, const intsystem_errno) Set the errno in a errno error object. Parameters: error The error object for which to set the errno system_errno The system errno Returns: void Author Generated automatically by Doxygen for globus common from the source code. Version 14.7 Tue Nov 27 2012 Error Data Accessors and Modifiers(3)

Check Out this Related Man Page

Error Handling Helpers(3)					   globus common					 Error Handling Helpers(3)

NAME
Error Handling Helpers - Error Match globus_bool_t globus_error_errno_match (globus_object_t *error, globus_module_descriptor_t *module, int system_errno) Wrap Errno Error globus_object_t * globus_error_wrap_errno_error (globus_module_descriptor_t *base_source, int system_errno, int type, const char *source_file, const char *source_func, int source_line, const char *short_desc_format,...) Detailed Description Helper functions for dealing with Globus Errno Error objects. This section defines utility functions for dealing with Globus Errno Error objects. Function Documentation globus_bool_t globus_error_errno_match (globus_object_t *error, globus_module_descriptor_t *module, intsystem_errno) Check whether the error originated from a specific module and matches a specific errno. This function checks whether the error or any of it's causative errors originated from a specific module and contains a specific errno. If the module descriptor is left unspecified this function will check for any error of the specified errno and vice versa. Parameters: error The error object for which to perform the check module The module descriptor to check for system_errno The errno to check for Returns: GLOBUS_TRUE - the error matched the module and errno GLOBUS_FALSE - the error failed to match the module and errno globus_object_t* globus_error_wrap_errno_error (globus_module_descriptor_t *base_source, intsystem_errno, inttype, const char *source_file, const char *source_func, intsource_line, const char *short_desc_format, ...) Allocate and initialize an error of type GLOBUS_ERROR_TYPE_GLOBUS which contains a causal error of type GLOBUS_ERROR_TYPE_ERRNO. Parameters: base_source Pointer to the originating module. system_errno The errno to use when generating the causal error. type The error type. We may reserve part of this namespace for common errors. Errors not in this space are assumed to be local to the originating module. source_file Name of file. Use FILE source_func Name of function. Use _globus_func_name and declare your func with GlobusFuncName(<name>) source_line Line number. Use LINE short_desc_format Short format string giving a succinct description of the error. To be passed on to the user. ... Arguments for the format string. Returns: The resulting error object. It is the user's responsibility to eventually free this object using globus_object_free(). A globus_result_t may be obtained by calling globus_error_put() on this object. Author Generated automatically by Doxygen for globus common from the source code. Version 14.7 Tue Nov 27 2012 Error Handling Helpers(3)
Man Page