-- --**************************************************************************** --* * --* Copyright (c) 2001 * --* by DIGITAL Equipment Corporation, Maynard, Mass. * --* * --* This software is furnished under a license and may be used and copied * --* only in accordance with the terms of such license and with the * --* inclusion of the above copyright notice. This software or any other * --* copies thereof may not be provided or otherwise made available to any * --* other person. No title to and ownership of the software is hereby * --* transferred. * --* * --* The information in this software is subject to change without notice * --* and should not be construed as a commitment by DIGITAL Equipment * --* Corporation. * --* * --* DIGITAL assumes no responsibility for the use or reliability of its * --* software on equipment which is not supplied by DIGITAL. * --* * --**************************************************************************** --******************************************************************************************************************** -- Created: 15-MAR-2001 22:54:11 by OpenVMS SDL EV1-33 -- Source: 2-SEP-1989 10:56:11 $11$DUA933:[LIB_ADA.LIS]STATEDEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package STATEDEF is -- module $STATEDEF --+ -- SCHEDULING STATES --- -- DEFINITIONS START AT 1 SCH_C_COLPG : constant := 1; -- COLLIDED PAGE WAIT SCH_C_MWAIT : constant := 2; -- MUTEX AND MISCELLANEOUS RESOURCE WAIT SCH_C_CEF : constant := 3; -- COMMON EVENT FLAG WAIT STATE SCH_C_PFW : constant := 4; -- PAGE FAULT WAIT SCH_C_LEF : constant := 5; -- LOCAL EVENT FLAG WAIT SCH_C_LEFO : constant := 6; -- LOCAL EVENT FLAG WAIT OUT OF BALANCE SET SCH_C_HIB : constant := 7; -- HIBERNATE WAIT SCH_C_HIBO : constant := 8; -- HIBERNATE WAIT OUT OF BALANCE SET SCH_C_SUSP : constant := 9; -- SUSPENDED SCH_C_SUSPO : constant := 10; -- SUSPENDED OUT OF THE BALANCE SET SCH_C_FPG : constant := 11; -- FREEPAGE WAIT SCH_C_COM : constant := 12; -- COMPUTE, IN BALANCE SET STATE SCH_C_COMO : constant := 13; -- COMPUTE, OUT OF BALANCE SET STATE SCH_C_CUR : constant := 14; -- CURRENT PROCESS STATE end STATEDEF;