
{ NOTE:  The ijl entry statuses are order dependant for swap direction checking.  The constants
{ jmc$ies_swapped_in and jmc$ies_swapped_job are defined for swap direction checking in swapper.
{ If a job's entry status is less than jmc$ies_swapped_out, then the swap direction is IN.
{ If the entry status is greater than jmc$ies_swapped_in, then the swap direction is OUT.

  TYPE
    jmt$ijl_entry_status = (jmc$ies_entry_free,
                            jmc$ies_job_terminating,
                            jmc$ies_job_in_memory_non_swap,
                            jmc$ies_job_in_memory,
                            jmc$ies_swapin_in_progress,
                            jmc$ies_job_swapped,
                            jmc$ies_operator_force_out,
                            jmc$ies_system_force_out,
                            jmc$ies_job_damaged,
                            jmc$ies_ready_task,
                            jmc$ies_swapin_candidate);

  CONST
    jmc$ies_swapped_in = jmc$ies_swapin_in_progress,
    jmc$ies_swapped_out = jmc$ies_job_swapped;
