Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
fee578fa
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
fee578fa
编写于
7月 10, 2007
作者:
R
Ralf Baechle
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MIPS] Convert init_thread initialization to ISO C initializers.
Signed-off-by:
N
Ralf Baechle
<
ralf@linux-mips.org
>
上级
a3692020
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
53 addition
and
37 deletion
+53
-37
include/asm-mips/processor.h
include/asm-mips/processor.h
+53
-37
未找到文件。
include/asm-mips/processor.h
浏览文件 @
fee578fa
...
...
@@ -82,10 +82,6 @@ struct mips_fpu_struct {
unsigned
int
fcr31
;
};
#define INIT_FPU { \
{0,} \
}
#define NUM_DSP_REGS 6
typedef
__u32
dspreg_t
;
...
...
@@ -95,8 +91,6 @@ struct mips_dsp_state {
unsigned
int
dspcontrol
;
};
#define INIT_DSP {{0,},}
#define INIT_CPUMASK { \
{0,} \
}
...
...
@@ -155,41 +149,63 @@ struct thread_struct {
#define MF_N64 0
#ifdef CONFIG_MIPS_MT_FPAFF
#define FPAFF_INIT 0, INIT_CPUMASK,
#define FPAFF_INIT \
.emulated_fp = 0, \
.user_cpus_allowed = INIT_CPUMASK,
#else
#define FPAFF_INIT
#endif
/* CONFIG_MIPS_MT_FPAFF */
#define INIT_THREAD { \
/* \
* saved main processor registers \
*/
\
0, 0, 0, 0, 0, 0, 0, 0, \
0, 0, 0, \
/* \
* saved cp0 stuff \
*/
\
0, \
/* \
* saved fpu/fpu emulator stuff \
*/
\
INIT_FPU, \
/* \
* fpu affinity state (null if not FPAFF) \
*/
\
FPAFF_INIT \
/* \
* saved dsp/dsp emulator stuff \
*/
\
INIT_DSP, \
/* \
* Other stuff associated with the process \
*/
\
0, 0, 0, 0, \
/* \
* For now the default is to fix address errors \
*/
\
MF_FIXADE, 0, 0 \
#define INIT_THREAD { \
/* \
* Saved main processor registers \
*/
\
.reg16 = 0, \
.reg17 = 0, \
.reg18 = 0, \
.reg19 = 0, \
.reg20 = 0, \
.reg21 = 0, \
.reg22 = 0, \
.reg23 = 0, \
.reg29 = 0, \
.reg30 = 0, \
.reg31 = 0, \
/* \
* Saved cp0 stuff \
*/
\
.cp0_status = 0, \
/* \
* Saved FPU/FPU emulator stuff \
*/
\
.fpu = { \
.fpr = {0,}, \
.fcr31 = 0, \
}, \
/* \
* FPU affinity state (null if not FPAFF) \
*/
\
FPAFF_INIT \
/* \
* Saved DSP stuff \
*/
\
.dsp = { \
.dspr = {0, }, \
.dspcontrol = 0, \
}, \
/* \
* Other stuff associated with the process \
*/
\
.cp0_badvaddr = 0, \
.cp0_baduaddr = 0, \
.error_code = 0, \
.trap_no = 0, \
/* \
* For now the default is to fix address errors \
*/
\
.mflags = MF_FIXADE, \
.irix_trampoline = 0, \
.irix_oldctx = 0, \
}
struct
task_struct
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录