![]() |
|
![]() |
| LogAlpha | LogBytes | LogFloat |
| LogHexBytes | LogNumeric | OVRLogNumeric |
type LogSettingsType is record
LogName : string (1 .. 256) := (others => ASCIIX.nul);
ShowDate : boolean := True;
ShowTime : boolean := True;
LogActive : boolean := True;
end record;
for LogSettingsType use record
LogName at 0 range 0 .. 2_047;
ShowDate at 256 range 0 .. ModSys.Boolean_Size - 1;
ShowTime at 257 range 0 .. ModSys.Boolean_Size - 1;
LogActive at 258 range 0 .. ModSys.Boolean_Size - 1;
end record;
procedure LogAlpha
(LogSettings : in LogSettingsType;
Message : in string;
NewLineAfter : in boolean);
procedure LogFloat
(LogSettings : in LogSettingsType;
Value : in ModSys.S_Float64;
NewLineAfter : in boolean);
procedure LogNumeric
(LogSettings : in LogSettingsType;
Value : in ModSys.S_Natural;
NewLineAfter : in boolean);
procedure LogNumeric
(LogSettings : in LogSettingsType;
Value : in ModSys.S_Integer;
NewLineAfter : in boolean);
procedure LogBytes
(LogSettings : in LogSettingsType;
bValue : in System.Address;
numBytes : in ModSys.S_Natural;
NewLineAfter : in boolean);
procedure LogHexBytes
(LogSettings : in LogSettingsType;
ValueAdr : in System.Address;
numBytes : in ModSys.S_Natural);
Send mail to
warren.merrill@inl.gov
with questions or comments about this web site.
Copyright © 1989-2006 Battelle Energy Alliance