Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
8ced390c
K
Kernel
项目概览
openeuler
/
Kernel
接近 2 年 前同步成功
通知
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看板
提交
8ced390c
编写于
7月 02, 2017
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
define __poll_t, annotate constants
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
d759be89
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
32 addition
and
26 deletion
+32
-26
arch/blackfin/include/uapi/asm/poll.h
arch/blackfin/include/uapi/asm/poll.h
+2
-2
arch/frv/include/uapi/asm/poll.h
arch/frv/include/uapi/asm/poll.h
+1
-1
arch/m68k/include/uapi/asm/poll.h
arch/m68k/include/uapi/asm/poll.h
+1
-1
arch/mips/include/uapi/asm/poll.h
arch/mips/include/uapi/asm/poll.h
+1
-1
arch/sparc/include/uapi/asm/poll.h
arch/sparc/include/uapi/asm/poll.h
+4
-4
arch/xtensa/include/uapi/asm/poll.h
arch/xtensa/include/uapi/asm/poll.h
+2
-2
include/uapi/asm-generic/poll.h
include/uapi/asm-generic/poll.h
+15
-15
include/uapi/linux/types.h
include/uapi/linux/types.h
+6
-0
未找到文件。
arch/blackfin/include/uapi/asm/poll.h
浏览文件 @
8ced390c
...
...
@@ -9,8 +9,8 @@
#ifndef _UAPI__BFIN_POLL_H
#define _UAPI__BFIN_POLL_H
#define POLLWRNORM 4
/* POLLOUT */
#define POLLWRBAND 256
#define POLLWRNORM
(__force __poll_t)
4
/* POLLOUT */
#define POLLWRBAND
(__force __poll_t)
256
#include <asm-generic/poll.h>
...
...
arch/frv/include/uapi/asm/poll.h
浏览文件 @
8ced390c
...
...
@@ -3,7 +3,7 @@
#define _ASM_POLL_H
#define POLLWRNORM POLLOUT
#define POLLWRBAND 256
#define POLLWRBAND
(__force __poll_t)
256
#include <asm-generic/poll.h>
...
...
arch/m68k/include/uapi/asm/poll.h
浏览文件 @
8ced390c
...
...
@@ -3,7 +3,7 @@
#define __m68k_POLL_H
#define POLLWRNORM POLLOUT
#define POLLWRBAND 256
#define POLLWRBAND
(__force __poll_t)
256
#include <asm-generic/poll.h>
...
...
arch/mips/include/uapi/asm/poll.h
浏览文件 @
8ced390c
...
...
@@ -3,7 +3,7 @@
#define __ASM_POLL_H
#define POLLWRNORM POLLOUT
#define POLLWRBAND 0x0100
#define POLLWRBAND
(__force __poll_t)
0x0100
#include <asm-generic/poll.h>
...
...
arch/sparc/include/uapi/asm/poll.h
浏览文件 @
8ced390c
...
...
@@ -3,10 +3,10 @@
#define __SPARC_POLL_H
#define POLLWRNORM POLLOUT
#define POLLWRBAND 256
#define POLLMSG 512
#define POLLREMOVE 1024
#define POLLRDHUP 2048
#define POLLWRBAND
(__force __poll_t)
256
#define POLLMSG
(__force __poll_t)
512
#define POLLREMOVE
(__force __poll_t)
1024
#define POLLRDHUP
(__force __poll_t)
2048
#include <asm-generic/poll.h>
...
...
arch/xtensa/include/uapi/asm/poll.h
浏览文件 @
8ced390c
...
...
@@ -13,8 +13,8 @@
#define _XTENSA_POLL_H
#define POLLWRNORM POLLOUT
#define POLLWRBAND 0x0100
#define POLLREMOVE 0x0800
#define POLLWRBAND
(__force __poll_t)
0x0100
#define POLLREMOVE
(__force __poll_t)
0x0800
#include <asm-generic/poll.h>
...
...
include/uapi/asm-generic/poll.h
浏览文件 @
8ced390c
...
...
@@ -3,35 +3,35 @@
#define __ASM_GENERIC_POLL_H
/* These are specified by iBCS2 */
#define POLLIN 0x0001
#define POLLPRI 0x0002
#define POLLOUT 0x0004
#define POLLERR 0x0008
#define POLLHUP 0x0010
#define POLLNVAL 0x0020
#define POLLIN
(__force __poll_t)
0x0001
#define POLLPRI
(__force __poll_t)
0x0002
#define POLLOUT
(__force __poll_t)
0x0004
#define POLLERR
(__force __poll_t)
0x0008
#define POLLHUP
(__force __poll_t)
0x0010
#define POLLNVAL
(__force __poll_t)
0x0020
/* The rest seem to be more-or-less nonstandard. Check them! */
#define POLLRDNORM 0x0040
#define POLLRDBAND 0x0080
#define POLLRDNORM
(__force __poll_t)
0x0040
#define POLLRDBAND
(__force __poll_t)
0x0080
#ifndef POLLWRNORM
#define POLLWRNORM 0x0100
#define POLLWRNORM
(__force __poll_t)
0x0100
#endif
#ifndef POLLWRBAND
#define POLLWRBAND 0x0200
#define POLLWRBAND
(__force __poll_t)
0x0200
#endif
#ifndef POLLMSG
#define POLLMSG 0x0400
#define POLLMSG
(__force __poll_t)
0x0400
#endif
#ifndef POLLREMOVE
#define POLLREMOVE 0x1000
#define POLLREMOVE
(__force __poll_t)
0x1000
#endif
#ifndef POLLRDHUP
#define POLLRDHUP 0x2000
#define POLLRDHUP
(__force __poll_t)
0x2000
#endif
#define POLLFREE 0x4000
/* currently only for epoll */
#define POLLFREE
(__force __poll_t)
0x4000
/* currently only for epoll */
#define POLL_BUSY_LOOP 0x8000
#define POLL_BUSY_LOOP
(__force __poll_t)
0x8000
struct
pollfd
{
int
fd
;
...
...
include/uapi/linux/types.h
浏览文件 @
8ced390c
...
...
@@ -49,5 +49,11 @@ typedef __u32 __bitwise __wsum;
#define __aligned_be64 __be64 __attribute__((aligned(8)))
#define __aligned_le64 __le64 __attribute__((aligned(8)))
#ifdef __CHECK_POLL
typedef
unsigned
__bitwise
__poll_t
;
#else
typedef
unsigned
__poll_t
;
#endif
#endif
/* __ASSEMBLY__ */
#endif
/* _UAPI_LINUX_TYPES_H */
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录