汇编源代码大全

源代码在线查看: sched.h

软件大小: 14099 K
上传用户: struggle10000
关键词: 汇编 代码大全
下载地址: 免注册下载 普通下载 VIP

相关代码

				#ifndef _LINUX_SCHED_H
				#define _LINUX_SCHED_H
				
				#include 
				
				struct i387_hard_struct {
					long	cwd;
					long	swd;
					long	twd;
					long	fip;
					long	fcs;
					long	foo;
					long	fos;
					long	st_space[20];	/* 8*10 bytes for each FP-reg = 80 bytes */
				};
				
				struct i387_soft_struct {
					long	cwd;
					long	swd;
					long	twd;
					long	fip;
					long	fcs;
					long	foo;
					long	fos;
					long	top;
					struct fpu_reg	regs[8];	/* 8*16 bytes for each FP-reg = 128 bytes */
					unsigned char	lookahead;
					struct info	*info;
					unsigned long	entry_eip;
				};
				
				union i387_union {
					struct i387_hard_struct hard;
					struct i387_soft_struct soft;
				};
				
				#endif
							

相关资源