--******************************************************************************************************************** -- Created: 30-Mar-2010 17:02:00 by OpenVMS SDL EV3-3 -- Source: 24-APR-2008 12:47:59 $1$DGA7274:[STARLET_ADA.LIS]SYSEVTDEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package SYSEVTDEF is -- module $SYSEVTDEF SYSEVT_C_ALL_EVENTS : constant := 1; -- Valid for $Clear_system_event only SYSEVT_C_ADD_GALAXY_MEMBER : constant := 2; -- One or more instances have joined the -- Galaxy community SYSEVT_C_DEL_GALAXY_MEMBER : constant := 3; -- One or more instances have left the -- Galaxy community SYSEVT_C_ADD_ACTIVE_CPU : constant := 4; -- One or more CPUs have become active -- within this VMS instance SYSEVT_C_DEL_ACTIVE_CPU : constant := 5; -- One or more CPU have become inactive SYSEVT_C_ADD_CONFIG_CPU : constant := 6; -- One or more CPUs are now part of the -- configure set for this instance. SYSEVT_C_DEL_CONFIG_CPU : constant := 7; -- One or more CPUS have left this instance SYSEVT_C_CONFIG_TREE : constant := 8; -- An update has occurred to the Galaxy config tree SYSEVT_C_FASTPATH_CPUS : constant := 9; -- A modification has been made to the system -- parameter, IO_PREFER_CPUS. SYSEVT_C_TDF_CHANGE : constant := 10; -- time differential change SYSEVT_C_CPU_POWER : constant := 11; -- CPU power transition SYSEVT_C_INDICTMENT : constant := 12; -- Component Indictment was performed SYSEVT_C_CPU_DEALLOCATE : constant := 13; -- CPU deallocated from running system SYSEVT_C_MAX_EVENT : constant := 14; -- maximum event number SYSEVT_C_NUM_EVENTS : constant := 13; -- Number of events SYSEVT_K_NUM_EVENTS : constant := 13; SYSEVT_M_NOTIFY_ONCE : constant := 0; -- indicate one shot request SYSEVT_M_REPEAT_NOTIFY : constant := 1; -- Bit 0 represents whether the event notification is a SYSEVT_V_REPEAT_NOTIFY : constant := 0; -- one shot deal or should be a repeating notification. end SYSEVTDEF;