/********************************************************************************************************************************/ /* Created: 30-Mar-2010 17:29:36 by OpenVMS SDL EV3-3 */ /* Source: 30-MAR-2010 17:29:20 $1$DGA7274:[STARLET_H.SRC]LIBVMDEF.SDI;1 */ /********************************************************************************************************************************/ /*** MODULE $LIBVMDEF ***/ #ifndef __LIBVMDEF_LOADED #define __LIBVMDEF_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 /* Interface definitions for LIB$VM package */ /* */ /* LIB$CREATE_VM_ZONE algorithm codes */ #define LIB$K_VM_FIRST_FIT 1 /* First fit */ #define LIB$K_VM_QUICK_FIT 2 /* Quick fit, with fixed queues of preferred sizes */ #define LIB$K_VM_FREQ_SIZES 3 /* First fit, with frequent sizes cache */ #define LIB$K_VM_FIXED 4 /* Fixed size blocks */ /* LIB$CREATE_VM_ZONE flag definitions */ #define LIB$M_VM_BOUNDARY_TAGS 1 /* Boundary tagged blocks */ #define LIB$M_VM_GET_FILL0 2 /* 0-fill for LIB$GET_VM */ #define LIB$M_VM_GET_FILL1 4 /* 1-fill for LIB$GET_VM */ #define LIB$M_VM_FREE_FILL0 8 /* 0-fill for LIB$FREE_VM */ #define LIB$M_VM_FREE_FILL1 16 /* 1-fill for LIB$FREE_VM */ #define LIB$M_VM_EXTEND_AREA 32 /* Add extent to existing area if possible */ #define LIB$M_VM_NO_EXTEND 64 /* Area is not allowed to be extended */ #define LIB$M_VM_TAIL_LARGE 128 /* Add larger than normal areas at the tail */ #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 /* __LIBVMDEF_LOADED */