?? NEWTITLE := 'LLDELSC : loader status conditions : ''LL'' 0 .. 99' ??
?? EJECT ??
?? FMT (FORMAT := OFF) ??
*copyc llc$min_ecc

  CONST
    llc$loader_status_conditions    = llc$min_ecc,

    lle$premature_load_termination  = llc$loader_status_conditions + 0,
    {E +P load prematurely terminated.  Consult load map and/or output.}

    lle$term_error_level_exceeded   = llc$loader_status_conditions + 1,
    {E Load error severity is or exceeds TERMINATION_ERROR_LEVEL.}

    lle$load_map_suspended          = llc$loader_status_conditions + 2,
    {W Load map suspended due to file access error.}

    lle$entry_point_not_found       = llc$loader_status_conditions + 3,
    {E Unable to find entry point (+P).}

    lle$insufficient_memory_to_load = llc$loader_status_conditions + 4,
    {E Maximum segment length exceeded.  Consult load map and/or output.}

    lle$loader_malfunctioned        = llc$loader_status_conditions + 5,
    {E Loader malfunctioned - +P.  Consult load map and/or output.}

    lle$library_not_executable      = llc$loader_status_conditions + 6,
    {E The library parameter referenced a segment whose execute privilege..}
    { is non_executable.}

    llc$max_loader_status_condition = llc$loader_status_conditions + 99;

?? FMT (FORMAT := ON) ??
?? OLDTITLE ??
