{ Deck:  DFT$JOB_RECOVERY_LOCATION
{
{ Job recovery location is used on the client to determine
{ where the server job recovery should be performed.
{ dfc$job_rec_started_by_caller - it is the responsibility of the
{   caller of dfp$send_remote_procedure_call to start job recovery
{   by use of dfp$check_job_recovery.
{   The caller sees the status condition of dfe$job_needs_recovery
{ dfc$job_rec_in_unavailable_wait, - the caller of
{   dfp$send_remote_procedure_call calls osp$wait_on_condition and
{   server job recovery is performed there.
{   The caller sees the status condition of dfe$server_not_active
{ dfc$job_rec_immediately - the job recovery operation as performed
{   as a result of the dfp$send_remote_procedure_call request.  This
{   is only available for 'clean' requests, that is requests without
{   system or job locks set.
{   This option is currently untested.

  TYPE
    dft$job_recovery_location = (dfc$job_rec_started_by_caller,
          dfc$job_rec_in_unavailable_wait, dfc$job_rec_immediately);

