-- $Source: /commtar/monoBANK/RTS/tKtgtcon.dat,v $ -- $Revision: 1.3 $ $Date: 88/01/28 16:43:12 $ $Author: rac $ package RTS_Target_Constants is --| OVERVIEW --| --| This package contains constants which depend on characteristics --| of the target operating system. For example, the boolean --| Record_Oriented tells whether the I/O on the target is --| record-oriented or not. Record_Oriented : constant boolean := False; --| Whether I/O is record-oriented or not. Buffering_Cutoff_In_Bits : constant := 0; --| For sequential I/O, if objects are smaller than this --| their I/O is buffered. Otherwise, I/O is unbuffered and --| each object is written out directly to disk. Ideal_Buf_Size_In_Bits : constant := 32768; --| For sequential I/O, this is the ideal buffer size in bits. --| We make a buffer that is as close to this size as possible --| (but never larger). Lock_Global_Data: constant Boolean := True; --| TRUE if tasking implementation is multi-processor model, --| which requires synchronization of access to data. --| FALSE if tasking is single-processor model. end RTS_Target_Constants; -- $Cprt start$ -- -- Copyright (C) 1988 by Intermetrics, Inc. -- -- This material may be used duplicated or disclosed by or for the -- U.S. Government pursuant to the copyright license under DAR clause -- 7-104.9(a) (May 1981). -- -- This project was spnsored by the STARS Foundation -- Naval Research Laboratory, Washington DC -- -- $Cprt end$