Files
Digital-Research-Source-Code/MPM OPERATING SYSTEMS/MPM II/MPM II SOURCE/UTIL2/SCRSP.PLM
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

30 lines
640 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

$title('MP/M II V2.0 Scheduler Process - Resident Portion')
sched:
do;
$include (copyrt.lit)
/*
Revised:
14 Sept 81 by Thomas Rolander
*/
$include (proces.lit)
$include (queue.lit)
/*
Sched Process Data Segment
*/
declare os address public
data (0);
declare sched$pd process$descriptor public
data (0,rtr$status,100,0,
'Sc',0e8h /* 'h'+80h */,'ed ',0,0,0,0,0);
declare sched$lqcb
structure (lqueue,
buf (71) byte)
initial (0,'Sched ',69,1);
end sched;