system.h

来自「操作系统课程设计。在UNIX平台下实现Solary操作系统的一些功能」· C头文件 代码 · 共 54 行

H
54
字号
// system.h //	All global variables used in Nachos are defined here.//// Copyright (c) 1992-1993 The Regents of the University of California.// All rights reserved.  See copyright.h for copyright notice and limitation // of liability and disclaimer of warranty provisions.#ifndef SYSTEM_H#define SYSTEM_H#include "copyright.h"#include "utility.h"#include "thread.h"#include "scheduler.h"#include "interrupt.h"#include "stats.h"#include "timer.h"#define s_SUPER fileSystem->s_superBlock// Initialization and cleanup routinesextern void Initialize(int argc, char **argv); 	// Initialization,						// called before anything elseextern void Cleanup();				// Cleanup, called when						// Nachos is done.extern Thread *currentThread;			// the thread holding the CPUextern Thread *threadToBeDestroyed;  		// the thread that just finishedextern Scheduler *scheduler;			// the ready listextern Interrupt *interrupt;			// interrupt statusextern Statistics *stats;			// performance metricsextern Timer *timer;				// the hardware alarm clock#ifdef USER_PROGRAM#include "machine.h"extern Machine* machine;	// user program memory and registers#endif#ifdef FILESYS_NEEDED 		// FILESYS or FILESYS_STUB #include "filesys.h"extern FileSystem  *fileSystem;#endif#ifdef FILESYS#include "synchdisk.h"extern SynchDisk   *synchDisk;#endif#ifdef NETWORK#include "post.h"extern PostOffice* postOffice;#endif#endif // SYSTEM_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?