mm.hhf

来自「High Level assembly language(HLA)软件」· HHF 代码 · 共 29 行

HHF
29
字号
#if( !@defined( mm_hhf ))?mm_hhf := true;#includeonce( "os/atomic.hhf" )#includeonce( "os/lists.hhf" )#includeonce( "os/wait.hhf" )namespace linux; @fast;type  	page: record  		list		:list_head;  		mapping		:dword;		// pointer to address_space  		index		:dword;  		next_hash	:dword;		// pointer to page  		count		:atomic_t;  		flags		:dword;  		lru			:list_head;  		age			:dword;  		_wait		:wait_queue_head_t;  		pprev_hash	:dword;		// ptr to ptr to page  		buffers		:dword;		// ptr to buffer_head  		virtual		:dword;  		zone		:dword;		// pointer to zone_struct  	endrecord;  	end linux;#endif //mm_hhf

⌨️ 快捷键说明

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