Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/xtensa/include/uapi/asm/poll.h
26498 views
1
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2
/*
3
* include/asm-xtensa/poll.h
4
*
5
* This file is subject to the terms and conditions of the GNU General
6
* Public License. See the file "COPYING" in the main directory of
7
* this archive for more details.
8
*
9
* Copyright (C) 2001 - 2005 Tensilica Inc.
10
*/
11
12
#ifndef _XTENSA_POLL_H
13
#define _XTENSA_POLL_H
14
15
#define POLLWRNORM POLLOUT
16
#define POLLWRBAND 0x0100
17
#define POLLREMOVE 0x0800
18
19
#include <asm-generic/poll.h>
20
21
#endif /* _XTENSA_POLL_H */
22
23