/***************************************************************************/ /** **/ /** HPE CONFIDENTIAL. This software is confidential proprietary software **/ /** licensed by Hewlett-Packard Enterprise Development, LP, and is not **/ /** authorized to be used, duplicated OR disclosed to anyone without the **/ /** prior written permission of HPE. **/ /** © 2023 Copyright Hewlett-Packard Enterprise Development, LP **/ /** **/ /** VMS SOFTWARE, INC. CONFIDENTIAL. This software is confidential **/ /** proprietary software licensed by VMS Software, Inc., and is not **/ /** authorized to be used, duplicated or disclosed to anyone without **/ /** the prior written permission of VMS Software, Inc. **/ /** © 2023 Copyright VMS Software, Inc. **/ /** **/ /***************************************************************************/ /********************************************************************************************************************************/ /* Created: 9-Nov-2023 12:06:50 by OpenVMS SDL V3.7 */ /* Source: 31-JAN-2008 14:10:08 $1$DGA8345:[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 */