blob: 599dc6b6bdb22758ac2075ce89d0427b8036a54a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# Job table for detached processes.
int pr_jobcode[MAX_BKGJOBS] # job code assigned by host system
int pr_active[MAX_BKGJOBS] # set to NO if job is killed
int pr_exit_status[MAX_BKGJOBS] # exit status of process
pointer pr_bkgfile[MAX_BKGJOBS] # bkgfile filename (signals job term)
common /prdcom/ pr_jobcode, pr_active, pr_exit_status, pr_bkgfile
|