Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

qbipc_common.h(3) [centos man page]

qbipc_common.h(3)						       libqb							 qbipc_common.h(3)

NAME
qbipc_common.h - SYNOPSIS
#include <stdint.h> Data Structures struct qb_ipc_request_header struct qb_ipc_response_header Macros #define QB_IPC_MSG_NEW_MESSAGE 0 #define QB_IPC_MSG_USER_START QB_IPC_MSG_NEW_MESSAGE #define QB_IPC_MSG_AUTHENTICATE -1 #define QB_IPC_MSG_NEW_EVENT_SOCK -2 #define QB_IPC_MSG_DISCONNECT -3 Enumerations enum qb_ipc_type { QB_IPC_SOCKET, QB_IPC_SHM, QB_IPC_POSIX_MQ, QB_IPC_SYSV_MQ, QB_IPC_NATIVE } Functions struct qb_ipc_request_header __attribute__ ((aligned(8))) Variables enum qb_ipc_type __attribute__ Macro Definition Documentation #define QB_IPC_MSG_AUTHENTICATE -1 #define QB_IPC_MSG_DISCONNECT -3 #define QB_IPC_MSG_NEW_EVENT_SOCK -2 #define QB_IPC_MSG_NEW_MESSAGE 0 #define QB_IPC_MSG_USER_START QB_IPC_MSG_NEW_MESSAGE Enumeration Type Documentation enum qb_ipc_type Enumerator QB_IPC_SOCKET QB_IPC_SHM QB_IPC_POSIX_MQ QB_IPC_SYSV_MQ QB_IPC_NATIVE Function Documentation struct qb_ipc_request_header __attribute__ ((aligned(8))) Variable Documentation int32_t error __attribute__ Author Generated automatically by Doxygen for libqb from the source code. Version 0.16.0 Tue Jun 17 2014 qbipc_common.h(3)

Check Out this Related Man Page

Globus Callback(3)						   globus common						Globus Callback(3)

NAME
Globus Callback - Modules Globus Callback API Globus Callback Spaces Macros #define GLOBUS_CALLBACK_MODULE #define GLOBUS_POLL_MODULE Typedefs typedef int globus_callback_handle_t typedef int globus_callback_space_t typedef struct globus_l_callback_space_attr_s * globus_callback_space_attr_t" Enumerations enum globus_callback_error_type_t { GLOBUS_CALLBACK_ERROR_INVALID_CALLBACK_HANDLE = 1024, GLOBUS_CALLBACK_ERROR_INVALID_SPACE, GLOBUS_CALLBACK_ERROR_MEMORY_ALLOC, GLOBUS_CALLBACK_ERROR_INVALID_ARGUMENT, GLOBUS_CALLBACK_ERROR_ALREADY_CANCELED, GLOBUS_CALLBACK_ERROR_NO_ACTIVE_CALLBACK } Detailed Description Macro Definition Documentation #define GLOBUS_CALLBACK_MODULE Module descriptor. Module descriptor for for globus_callback module. Must be activated before any of the following api is called. Note: You would not normally activate this module directly. Activating the GLOBUS_COMMON_MODULE will in turn activate this also. #define GLOBUS_POLL_MODULE Module descriptor. Deprecated Backward compatible name Typedef Documentation typedef int globus_callback_handle_t Periodic callback handle. This handle can be copied or compared, and represented as NULL with GLOBUS_NULL_HANDLE typedef int globus_callback_space_t Callback space handle. This handle can be copied or compared and represented as NULL with GLOBUS_NULL_HANDLE typedef struct globus_l_callback_space_attr_s* globus_callback_space_attr_t Callback space attribute. This handle can be copied and represented as NULL with GLOBUS_NULL Enumeration Type Documentation enum globus_callback_error_type_t Error types. Possible error types returned by the api in this module. You can use the error API to check results against these types. See Also: Error Handling Helpers Enumerator: GLOBUS_CALLBACK_ERROR_INVALID_CALLBACK_HANDLE The callback handle is not valid or it has already been destroyed. GLOBUS_CALLBACK_ERROR_INVALID_SPACE The space handle is not valid or it has already been destroyed. GLOBUS_CALLBACK_ERROR_MEMORY_ALLOC Could not allocate memory for an internal structure. GLOBUS_CALLBACK_ERROR_INVALID_ARGUMENT One of the arguments is NULL or out of range. GLOBUS_CALLBACK_ERROR_ALREADY_CANCELED Attempt to unregister callback again. GLOBUS_CALLBACK_ERROR_NO_ACTIVE_CALLBACK Attempt to retrieve info about a callback not in callers's stack. Author Generated automatically by Doxygen for globus common from the source code. Version 14.7 Tue Nov 27 2012 Globus Callback(3)
Man Page