/********************************************************************************************************************************/ /* Created: 30-Mar-2010 17:29:49 by OpenVMS SDL EV3-3 */ /* Source: 30-MAR-2010 17:29:21 $1$DGA7274:[STARLET_H.SRC]STARDEFAE.SDI;1 */ /********************************************************************************************************************************/ /*** MODULE $CHKPNTDEF ***/ #ifndef __CHKPNTDEF_LOADED #define __CHKPNTDEF_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 /*- */ /* */ /* Define flags for calls to create checkpointable processes */ /*+ */ #define CHKPNT$M_AUTO_RESTART 0x1 #define CHKPNT$M_DEBUG 0x2 #define CHKPNT$M_ASYNC 0x4 #ifdef __NEW_STARLET typedef struct _chkpntdef { unsigned chkpnt$v_auto_restart : 1; /* auto-restart detached process */ unsigned chkpnt$v_debug : 1; /* merge in DEBUG */ unsigned chkpnt$v_async : 1; /* asynchronous checkpoint process */ unsigned chkpnt$v_fill_73_ : 5; } CHKPNTDEF; #else /* __OLD_STARLET */ struct chkpntdef { unsigned chkpnt$v_auto_restart : 1; /* auto-restart detached process */ unsigned chkpnt$v_debug : 1; /* merge in DEBUG */ unsigned chkpnt$v_async : 1; /* asynchronous checkpoint process */ unsigned chkpnt$v_fill_73_ : 5; } ; #endif /* #ifdef __NEW_STARLET */ #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 /* __CHKPNTDEF_LOADED */