Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

globus::gram::jobsignal(3) [debian man page]

JobSignal(3)						User Contributed Perl Documentation					      JobSignal(3)

NAME
Globus::GRAM::JobSignal - GRAM Protocol JobSignal Constants DESCRIPTION
The Globus::GRAM::JobSignal module defines symbolic names for the JobSignal constants in the GRAM Protocol. Methods $value = Globus::GRAM::CANCEL() Return the value of the CANCEL constant. $value = Globus::GRAM::SUSPEND() Return the value of the SUSPEND constant. $value = Globus::GRAM::RESUME() Return the value of the RESUME constant. $value = Globus::GRAM::PRIORITY() Return the value of the PRIORITY constant. $value = Globus::GRAM::COMMIT_REQUEST() Return the value of the COMMIT_REQUEST constant. $value = Globus::GRAM::COMMIT_EXTEND() Return the value of the COMMIT_EXTEND constant. $value = Globus::GRAM::STDIO_UPDATE() Return the value of the STDIO_UPDATE constant. $value = Globus::GRAM::STDIO_SIZE() Return the value of the STDIO_SIZE constant. $value = Globus::GRAM::STOP_MANAGER() Return the value of the STOP_MANAGER constant. $value = Globus::GRAM::COMMIT_END() Return the value of the COMMIT_END constant. perl v5.14.2 2012-04-30 JobSignal(3)

Check Out this Related Man Page

Error Messages(3)					       globus gram protocol						 Error Messages(3)

NAME
Error Messages - Functions const char * globus_gram_protocol_error_string (int error_code) void globus_gram_protocol_error_7_hack_replace_message (const char *message) void globus_gram_protocol_error_10_hack_replace_message (const char *message) Detailed Description Functions in this section handle converting GRAM error codes to strings which can help the user diagnose GRAM problems. Function Documentation const char* globus_gram_protocol_error_string (interror_code) Get a description of a a GRAM error code. The globus_gram_protocol_error_string() function takes a GRAM error code value and returns the associated error code string for the message. The string is statically allocated by the GRAM Protocol library and should not be modified or freed by the caller. The string is intended to complete a sentence of the form '[operation] failed because ...' Parameters: error_code The error code to translate into a string. Returns: The globus_gram_protocol_error_string() function returns a static string containing an explanation of the error. void globus_gram_protocol_error_7_hack_replace_message (const char *message) Replace the error message associated with error 7 with a custom message. The globus_gram_protocol_error_7_hack_replace_message() function creates a custom version of the error message for the error GLOBUS_GRAM_PROTOCOL_ERROR_AUTHORIZATION. The string pointed to by the message parameter is copied to thread-local storage, and subsequent calls to globus_gram_protocol_error_string() with this error number will return this copy of the string. Each time globus_gram_protocol_error_7_hack_replace_message() is called for a particular thread, the previous message is freed. The purpose of this function is to allow more meaningful error messages to be generated when authentication failures occur. In particular, the specific GSSAPI error reason can be used in place of a generic authorization failure message. Parameters: message The new message to be associated with the GLOBUS_GRAM_PROTOCOL_ERROR_AUTHORIZATION error code. Note: Since Globus 5.0.0, this function uses thread-specific storage, so that the value returned by globus_gram_protocol_error_string() for GLOBUS_GRAM_PROTOCOL_ERROR_AUTHORIZATION is that for the last authorization error where globus_gram_protocol_error_7_hack_replace_message() was called from this thread. void globus_gram_protocol_error_10_hack_replace_message (const char *message) Replace the error message associated with error 10 with a custom message. The globus_gram_protocol_error_10_hack_replace_message() function creates a custom version of the error message for the error GLOBUS_GRAM_PROTOCOL_ERROR_PROTOCOL_FAILED. The string pointed to by the message parameter is copied to thread-local storage, and subsequent calls to globus_gram_protocol_error_string() with this error number will return this copy of the string. Each time globus_gram_protocol_error_10_hack_replace_message() is called for a particular thread, the previous message is freed. The purpose of this function is to allow more meaningful error messages to be generated when protocol errors occur. In particular, the specific XIO error reason can be used in place of a generic protocol failure message. Parameters: message The new message to be associated with the GLOBUS_GRAM_PROTOCOL_ERROR_PROTOCOL_FAILED error code. Note: Since Globus 5.0.0, this function uses thread-specific storage, so that the value returned by globus_gram_protocol_error_string() for GLOBUS_GRAM_PROTOCOL_ERROR_PROTOCOL_FAILED is that for the last authorization error where globus_gram_protocol_error_10_hack_replace_message() was called from this thread. Author Generated automatically by Doxygen for globus gram protocol from the source code. Version 11.3 Mon Apr 30 2012 Error Messages(3)
Man Page