{ when_handler_status: Always normal.  This specifies to SCL when handling that
{                      the condition is informational and not an error.
{ exception_status: The status of the exception condition that is being reported.
{ file_access_condition: The type of exception condition reported.
{ object_name: Specifies the name of the file or catalog object that encountered the condition.
{              If the object_name is osc$null_name, the name of the object could not be isolated.
{ file_segment_isolated: Specifies whether or not the condition was successfully
{                        isolated to a segment.  If not, the file_segment should
{                        be ignored.
{ file_segment: Specifies the segment that encountered the condition.  Ignore if
{           NOT file_segment_isolated.

  TYPE
    ost$condition_information = PACKED record
      when_handler_status: boolean,
      exception_status: ost$status,
      file_access_condition: fst$file_access_condition,
      object_name: ost$name,
      file_segment_isolated: boolean,
      file_segment: ost$segment,
    recend;

*copyc fst$file_access_condition
*copyc osd$virtual_address
*copyc ost$name
*copyc ost$status
