Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(416)

Side by Side Diff: fusl/arch/generic/bits/ioctl.h

Issue 1689833004: [fusl] Update fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: remove stray space Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/arch/generic/bits/io.h ('k') | fusl/arch/generic/bits/ipc.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #define _IOC(a,b,c,d) ( ((a)<<30) | ((b)<<8) | (c) | ((d)<<16) ) 1 #define _IOC(a,b,c,d) ( ((a)<<30) | ((b)<<8) | (c) | ((d)<<16) )
2 #define _IOC_NONE 0U 2 #define _IOC_NONE 0U
3 #define _IOC_WRITE 1U 3 #define _IOC_WRITE 1U
4 #define _IOC_READ 2U 4 #define _IOC_READ 2U
5 5
6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0)
7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c))
8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c))
9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c)) 9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
10 10
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 #define SIOCSRARP 0x8962 188 #define SIOCSRARP 0x8962
189 189
190 #define SIOCGIFMAP 0x8970 190 #define SIOCGIFMAP 0x8970
191 #define SIOCSIFMAP 0x8971 191 #define SIOCSIFMAP 0x8971
192 192
193 #define SIOCADDDLCI 0x8980 193 #define SIOCADDDLCI 0x8980
194 #define SIOCDELDLCI 0x8981 194 #define SIOCDELDLCI 0x8981
195 195
196 #define SIOCDEVPRIVATE 0x89F0 196 #define SIOCDEVPRIVATE 0x89F0
197 #define SIOCPROTOPRIVATE 0x89E0 197 #define SIOCPROTOPRIVATE 0x89E0
OLDNEW
« no previous file with comments | « fusl/arch/generic/bits/io.h ('k') | fusl/arch/generic/bits/ipc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698