Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
3750411f
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
3750411f
编写于
1月 22, 2010
作者:
M
Mike Frysinger
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Blackfin: fix whitespace damage in thread_info.h
Signed-off-by:
N
Mike Frysinger
<
vapier@gentoo.org
>
上级
b73faf74
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
11 addition
and
12 deletion
+11
-12
arch/blackfin/include/asm/thread_info.h
arch/blackfin/include/asm/thread_info.h
+11
-12
未找到文件。
arch/blackfin/include/asm/thread_info.h
浏览文件 @
3750411f
/*
* Copyright 2004-20
09
Analog Devices Inc.
* Copyright 2004-20
10
Analog Devices Inc.
*
* Licensed under the GPL-2 or later.
*/
...
...
@@ -17,7 +17,7 @@
/* Thread Align Mask to reach to the top of the stack
* for any process
*/
#define ALIGN_PAGE_MASK
0xffffe000
#define ALIGN_PAGE_MASK
0xffffe000
/*
* Size of kernel stack for each process. This must be a power of 2...
...
...
@@ -57,7 +57,7 @@ struct thread_info {
.exec_domain = &default_exec_domain, \
.flags = 0, \
.cpu = 0, \
.preempt_count
= INIT_PREEMPT_COUNT,
\
.preempt_count
= INIT_PREEMPT_COUNT,
\
.restart_block = { \
.fn = do_no_restart_syscall, \
}, \
...
...
@@ -73,8 +73,7 @@ __attribute_const__
static
inline
struct
thread_info
*
current_thread_info
(
void
)
{
struct
thread_info
*
ti
;
__asm__
(
"%0 = sp;"
:
"=da"
(
ti
)
:
);
__asm__
(
"%0 = sp;"
:
"=da"
(
ti
));
return
(
struct
thread_info
*
)((
long
)
ti
&
~
((
long
)
THREAD_SIZE
-
1
));
}
...
...
@@ -99,21 +98,21 @@ static inline struct thread_info *current_thread_info(void)
#define TIF_NEED_RESCHED 2
/* rescheduling necessary */
#define TIF_POLLING_NRFLAG 3
/* true if poll_idle() is polling
TIF_NEED_RESCHED */
#define TIF_MEMDIE
4
#define TIF_MEMDIE
4
#define TIF_RESTORE_SIGMASK 5
/* restore signal mask in do_signal() */
#define TIF_FREEZE
6
/* is freezing for suspend */
#define TIF_IRQ_SYNC
7
/* sync pipeline stage */
#define TIF_NOTIFY_RESUME
8
/* callback before returning to user */
#define TIF_FREEZE
6
/* is freezing for suspend */
#define TIF_IRQ_SYNC
7
/* sync pipeline stage */
#define TIF_NOTIFY_RESUME
8
/* callback before returning to user */
/* as above, but as bit values */
#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
#define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)
#define _TIF_FREEZE (1<<TIF_FREEZE)
#define _TIF_IRQ_SYNC (1<<TIF_IRQ_SYNC)
#define _TIF_FREEZE (1<<TIF_FREEZE)
#define _TIF_IRQ_SYNC (1<<TIF_IRQ_SYNC)
#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
#define _TIF_WORK_MASK 0x0000FFFE
/* work to do on interrupt/exception return */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录