// #1 package ooos; public class OOOS { // debug levels public static final int NODEBUG = 0; public static final int USER = 1; public static final int CONSTRUCTOR = 2; public static final int IPC = 3; public static final int TRANSITION = 4; public static final int METHOD = 5; // number of blocks for OOOSDISK public static final int DISKSIZE = 100; // size of buffers in buffer pool public static final int BUFSIZE = 512; // set the amount of debug public static int debugLvl = NODEBUG; // set the number of iterations for the applications public static int steps = 6; // UNCOMMENT DURING IMPLEMENTATION STEPS public static Debug dbug; public static ProcTable procTable; // protected static Scheduler sch; // public static OutProducer out; // public static InConsumer in; // public static DiskUpper disk; public static void boot() { dbug = new Debug(); procTable = new ProcTable(); // sch = new Scheduler(); // out = new OutProducer(); // in = new InConsumer(); // disk = new DiskUpper(); } }