/* * * Process Quota List codes */ #ifndef _PQLDEF_H #define _PQLDEF_H #define PQL$_LISTEND 0 /*list end code (must be first) */ #define PQL$_ASTLM 1 /*AST limit */ #define PQL$_BIOLM 2 /*buffered I/O limit */ #define PQL$_BYTLM 3 /*byte limit for buffered I/O */ #define PQL$_CPULM 4 /*CPU time limit */ #define PQL$_DIOLM 5 /*direct I/O limit */ #define PQL$_FILLM 6 /*open file limit */ #define PQL$_PGFLQUOTA 7 /*paging file quota */ #define PQL$_PRCLM 8 /*sub-process limit */ #define PQL$_TQELM 9 /*timer queue entry limit */ #define PQL$_WSQUOTA 10 /*working set quota */ #define PQL$_WSDEFAULT 11 /*working set default */ #define PQL$_ENQLM 12 /*enqueue limit */ #define PQL$_WSEXTENT 13 /*working set extent limit */ #define PQL$_JTQUOTA 14 /*job-wide logical name table creation quota */ #define PQL$_LENGTH 15 /*number of quotas (must be last) */ #endif /*_PQLDEF_H*/