/**/ /***************************************************************************/ /** **/ /** © Copyright 2010, Hewlett-Packard Development Company, L.P. **/ /** **/ /** Confidential computer software. Valid license from HP and/or **/ /** its subsidiaries required for possession, use, or copying. **/ /** **/ /** Consistent with FAR 12.211 and 12.212, Commercial Computer Software, **/ /** Computer Software Documentation, and Technical Data for Commercial **/ /** Items are licensed to the U.S. Government under vendor's standard **/ /** commercial license. **/ /** **/ /** Neither HP nor any of its subsidiaries shall be liable for technical **/ /** or editorial errors or omissions contained herein. The information **/ /** in this document is provided "as is" without warranty of any kind and **/ /** is subject to change without notice. The warranties for HP products **/ /** are set forth in the express limited warranty statements accompanying **/ /** such products. Nothing herein should be construed as constituting an **/ /** additional warranty. **/ /** **/ /***************************************************************************/ /********************************************************************************************************************************/ /* Created: 30-Mar-2010 17:27:02 by OpenVMS SDL EV3-3 */ /* Source: 31-JAN-2008 14:10:08 $1$DGA7274:[LIB_H.SRC]CLUSDADEF.SDL;1 */ /********************************************************************************************************************************/ /*** MODULE $CLUSDADEF ***/ #ifndef __CLUSDADEF_LOADED #define __CLUSDADEF_LOADED 1 #pragma __nostandard /* This file uses non-ANSI-Standard features */ #pragma __member_alignment __save #pragma __nomember_alignment #ifdef __INITIAL_POINTER_SIZE /* Defined whenever ptr size pragmas supported */ #pragma __required_pointer_size __save /* Save the previously-defined required ptr size */ #pragma __required_pointer_size __short /* And set ptr size default to 32-bit pointers */ #endif #ifdef __cplusplus extern "C" { #define __unknown_params ... #define __optional_params ... #else #define __unknown_params #define __optional_params ... #endif #ifndef __struct #if !defined(__VAXC) #define __struct struct #else #define __struct variant_struct #endif #endif #ifndef __union #if !defined(__VAXC) #define __union union #else #define __union variant_union #endif #endif /*+ */ /* $CLUSDADEF - define an incoming connect block. This block handles */ /* all of the activity for one connection. Since only one command */ /* can be active at any time, a permanent CDRP is allocated with */ /* this block. */ /*- */ #define CLUSDA$C_BUGCHK 1 /* Cluster bugcheck protocol */ #define CLUSDA$C_PRTLEV 2 /* 32-bit Remote SDA Protocol level */ #define CLUSDA$C_PRTLEV_64 3 /* 64-bit Remote SDA Protocol level */ #define CLUSDA$C_IDLE 0 /* Idle */ #define CLUSDA$C_ACTIVE 1 /* CDRP is in use */ #define CLUSDA$C_LENGTH 24 /* LENGTH OF FIXED PART */ #define CLUSDA$K_LENGTH 24 /* LENGTH OF FIXED PART */ #ifdef __cplusplus /* Define structure prototypes */ struct _cdt; struct _pdt; #endif /* #ifdef __cplusplus */ #if !defined(__NOBASEALIGN_SUPPORT) && !defined(__cplusplus) /* If using pre DECC V4.0 or C++ */ #pragma __nomember_alignment __quadword #else #pragma __nomember_alignment #endif typedef struct _clusda { /* */ #pragma __nomember_alignment struct _clusda *clusda$l_flink; /* Queue forward link */ struct _clusda *clusda$l_blink; /* Queue backward link */ unsigned short int clusda$w_size; /* Structure size */ unsigned short int clusda$w_type; /* Structure type */ struct _cdt *clusda$l_cdt; /* CDT address */ struct _pdt *clusda$l_pdt; /* PDT address */ unsigned short int clusda$w_state; /* Connect state */ /* State values */ unsigned short int clusda$w_fill_1; /* Unused */ char clusda$b_cdrp [1]; /* Start of permanent CDRP */ char clusda$b_fill_0_ [7]; } CLUSDA; #define CLUSDA$S_CLUSDADEF 32 /* */ /* Data structure built in NPP by CLUSTER_CRASH */ /* */ #define SCSSDA$K_LENGTH 144 /* Length of the structure */ #if !defined(__NOBASEALIGN_SUPPORT) && !defined(__cplusplus) /* If using pre DECC V4.0 or C++ */ #pragma __nomember_alignment __quadword #else #pragma __nomember_alignment #endif typedef struct _scssda { #pragma __nomember_alignment unsigned int scssda$l_ref_count; /* Reference count for this block */ unsigned int scssda$l_cluster_flag; /* =1 if crashing all nodes */ unsigned short int scssda$w_size; /* Structure size */ unsigned char scssda$b_type; /* Structure type */ unsigned char scssda$b_subtype; /* Structure subtype */ unsigned int scssda$l_attempts; /* Number of nodes we've attempted to crash */ unsigned char scssda$t_target_node [8]; /* Name of target node */ unsigned char scssda$t_message_1 [16]; /* First part of coroner message */ unsigned short int scssda$w_connect; /* The connect code */ unsigned char scssda$t_message_2 [14]; /* Second part of coroner message */ unsigned __int64 scssda$q_system_id; /* The target system's ID (from the SB) */ SBO scssda$t_system_data; /* The SBO data returned by SCS$CONFIG_SYS */ } SCSSDA; #pragma __member_alignment __restore #ifdef __INITIAL_POINTER_SIZE /* Defined whenever ptr size pragmas supported */ #pragma __required_pointer_size __restore /* Restore the previously-defined required ptr size */ #endif #ifdef __cplusplus } #endif #pragma __standard #endif /* __CLUSDADEF_LOADED */