--******************************************************************************************************************** -- Created: 30-Mar-2010 17:01:55 by OpenVMS SDL EV3-3 -- Source: 07-OCT-2008 05:17:40 $1$DGA7274:[STARLET_ADA.LIS]PPROPDEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package PPROPDEF is -- module $PPROPDEF --+ -- -- Set Process Properties Data Identifier Definitions -- -- **** NOTE **** -- -- New items must always be added to the END of each item list -- (preceeding the ENDlistname item) so that users will not have -- to relink. --- -- Property definitions PPROP_C_PARSE_STYLE_TEMP : constant := 0; -- Change the parse style for the life of an image PPROP_C_PARSE_STYLE_PERM : constant := 1; -- Change the parse style for the life of the process PPROP_C_HOME_RAD : constant := 2; -- Change the home rad of the thread PPROP_C_CASE_LOOKUP_TEMP : constant := 3; -- Change the case lookup mode for the life of an image PPROP_C_CASE_LOOKUP_PERM : constant := 4; -- Change the case lookup mode for the life of the process PPROP_C_MEDDLE_ENABLE : constant := 5; -- Record the fact of alterations to process logical -- names or symbols PPROP_C_MEDDLE : constant := 6; -- Process logical names or symbols have been altered PPROP_C_UNITS : constant := 7; -- Change the units for the life of the process (blocks/bytes) PPROP_C_SS_LOG_ENABLE : constant := 8; -- Enable system service logging for the process PPROP_C_SS_LOG_DISABLE : constant := 9; -- Disable system service logging for the process PPROP_C_SS_LOG_UNLOAD : constant := 10; -- Stop system service logging & delete buffers PPROP_C_TOKEN : constant := 11; -- Change the DCL token size for the life of the process PPROP_C_DEADLOCK_WAIT : constant := 12; -- Change per-process deadlock wait (in 10msec units) PPROP_C_SEARCH_SYMLINK_TEMP : constant := 13; -- Change the symlink search mode for the life of an image PPROP_C_SEARCH_SYMLINK_PERM : constant := 14; -- Change the symlink search mode for the life of the process PPROP_C_KERNEL_THREAD_LIMIT : constant := 15; -- Change per-process kernel thread limit -- Parse style definitions PARSE_STYLE_C_ODS2 : constant := 0; -- Values for the above properties (old name) PARSE_STYLE_C_ODS5 : constant := 1; -- Values for the above properties (old name) PARSE_STYLE_C_TRADITIONAL : constant := 0; -- Values for the above properties (new name) PARSE_STYLE_C_EXTENDED : constant := 1; -- Values for the above properties (new name) -- case lookup definitions PPROP_K_CASE_BLIND : constant := 0; -- case blind operation PPROP_K_CASE_SENSITIVE : constant := 1; -- case sensitive operation -- symlink search mode definitions -- NOTE: Symlink search mode encodings are coordinated across $JPIDEF, $LIBCQDEF, -- $LIBFILDEF, $PPROPDEF, and $NAMLDEF. PPROP_K_SEARCH_SYMLINK_NONE : constant := 1; -- use no symlinks PPROP_K_SEARCH_SYMLINK_ALL : constant := 2; -- use symlinks always PPROP_K_SEARCH_SYMLINK_NOELLIPS : constant := 3; -- use symlinks except in ellipsis end PPROPDEF;