nachos下线程与同步的实验

源代码在线查看: table.h

软件大小: 14 K
上传用户: wuweixiong123
关键词: nachos 线程 同步的 实验
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include "synch-sleep.h"
				
				class Table 
				{
				      public:
				             Table(int size); // create a table to hold at most 'size' entries.
				             ~Table();  //析构函数 
				             
				             // allocate a table slot for 'object'.
				             // return the table index for the slot or -1 on error.
				             int Alloc(void *object);
				             
				             // return the object from table index 'index' or NULL on error.
				             // (assert index is in range).  Leave the table entry allocated
				             // and the pointer in place.
				             void *Get(int index);
				             
				             // free a table slot
				             void Release(int index);
				             
				      private:
				              Lock *lock; 
				              int* L;  //
				              int* value;  //value[0..S-1]:each value in the table
				              int S;  //the size of table
				};
							

相关资源