Created
May 2, 2018 08:33
-
-
Save frayos/2a496137f8b506758af92a54b1c7e514 to your computer and use it in GitHub Desktop.
LSF Job Status
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define JOB_STAT_PEND 0x01 job is pending | |
#define JOB_STAT_PSUSP 0x02 job is held | |
#define JOB_STAT_RUN 0x04 job is running | |
#define JOB_STAT_SSUSP 0x08 job is suspended by LSF Batch system | |
#define JOB_STAT_USUSP 0x10 job is suspended by user | |
#define JOB_STAT_EXIT 0x20 job exited | |
#define JOB_STAT_DONE 0x40 job is completed successfully |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment