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

Side by Side Diff: fusl/arch/aarch64/bits/socket.h

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 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/aarch64/bits/signal.h ('k') | fusl/arch/aarch64/bits/stat.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <endian.h>
2
3 struct msghdr
4 {
5 void *msg_name;
6 socklen_t msg_namelen;
7 struct iovec *msg_iov;
8 #if __BYTE_ORDER == __BIG_ENDIAN
9 int __pad1, msg_iovlen;
10 #else
11 int msg_iovlen, __pad1;
12 #endif
13 void *msg_control;
14 #if __BYTE_ORDER == __BIG_ENDIAN
15 int __pad2;
16 socklen_t msg_controllen;
17 #else
18 socklen_t msg_controllen;
19 int __pad2;
20 #endif
21 int msg_flags;
22 };
23
24 struct cmsghdr
25 {
26 #if __BYTE_ORDER == __BIG_ENDIAN
27 int __pad1;
28 socklen_t cmsg_len;
29 #else
30 socklen_t cmsg_len;
31 int __pad1;
32 #endif
33 int cmsg_level;
34 int cmsg_type;
35 };
OLDNEW
« no previous file with comments | « fusl/arch/aarch64/bits/signal.h ('k') | fusl/arch/aarch64/bits/stat.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698