Skip to content
This repository has been archived by the owner on Sep 30, 2020. It is now read-only.

Commit

Permalink
Handle LSF status ZOMBI -> EXIT
Browse files Browse the repository at this point in the history
  • Loading branch information
joakim-hove committed Apr 27, 2016
1 parent ec9c681 commit f2ee4f4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions devel/libjob_queue/src/lsf_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -1005,6 +1005,7 @@ static void lsf_driver_shell_init( lsf_driver_type * lsf_driver ) {
hash_insert_int(lsf_driver->status_map , "USUSP" , JOB_STAT_USUSP);
hash_insert_int(lsf_driver->status_map , "RUN" , JOB_STAT_RUN);
hash_insert_int(lsf_driver->status_map , "EXIT" , JOB_STAT_EXIT);
hash_insert_int(lsf_driver->status_map , "ZOMBI" , JOB_STAT_EXIT); /* The ZOMBI status does not seem to be available from the api. */
hash_insert_int(lsf_driver->status_map , "DONE" , JOB_STAT_DONE);
hash_insert_int(lsf_driver->status_map , "UNKWN" , JOB_STAT_UNKWN); /* Uncertain about this one */
pthread_mutex_init( &lsf_driver->bjobs_mutex , NULL );
Expand Down

0 comments on commit f2ee4f4

Please sign in to comment.