Skip to content

Instantly share code, notes, and snippets.

@frayos
Created May 2, 2018 08:33
Show Gist options
  • Save frayos/2a496137f8b506758af92a54b1c7e514 to your computer and use it in GitHub Desktop.
Save frayos/2a496137f8b506758af92a54b1c7e514 to your computer and use it in GitHub Desktop.
LSF Job Status
#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