Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
1baa95c5
Commit
1baa95c5
authored
Oct 31, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
http://gkernel.bkbits.net/alpha-2.5
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
6dc1ec37
f32abcc0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
11 deletions
+13
-11
arch/alpha/kernel/irq_impl.h
arch/alpha/kernel/irq_impl.h
+1
-0
include/asm-alpha/poll.h
include/asm-alpha/poll.h
+12
-11
No files found.
arch/alpha/kernel/irq_impl.h
View file @
1baa95c5
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
#include <linux/interrupt.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/irq.h>
#include <linux/profile.h>
#define RTC_IRQ 8
#define RTC_IRQ 8
...
...
include/asm-alpha/poll.h
View file @
1baa95c5
#ifndef __ALPHA_POLL_H
#ifndef __ALPHA_POLL_H
#define __ALPHA_POLL_H
#define __ALPHA_POLL_H
#define POLLIN 1
#define POLLIN (1 << 0)
#define POLLPRI 2
#define POLLPRI (1 << 1)
#define POLLOUT 4
#define POLLOUT (1 << 2)
#define POLLERR 8
#define POLLERR (1 << 3)
#define POLLHUP 16
#define POLLHUP (1 << 4)
#define POLLNVAL 32
#define POLLNVAL (1 << 5)
#define POLLRDNORM 64
#define POLLRDNORM (1 << 6)
#define POLLRDBAND 128
#define POLLRDBAND (1 << 7)
#define POLLWRNORM 256
#define POLLWRNORM (1 << 8)
#define POLLWRBAND 512
#define POLLWRBAND (1 << 9)
#define POLLMSG 1024
#define POLLMSG (1 << 10)
#define POLLREMOVE (1 << 11)
struct
pollfd
{
struct
pollfd
{
int
fd
;
int
fd
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment