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

Side by Side Diff: fusl/arch/x32/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/x32/bits/signal.h ('k') | fusl/arch/x32/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 struct msghdr
2 {
3 void *msg_name;
4 socklen_t msg_namelen;
5 struct iovec *msg_iov;
6 int msg_iovlen, __pad1;
7 void *msg_control;
8 socklen_t msg_controllen, __pad2;
9 int msg_flags;
10 };
11
12 struct cmsghdr
13 {
14 socklen_t cmsg_len;
15 int __pad1;
16 int cmsg_level;
17 int cmsg_type;
18 };
OLDNEW
« no previous file with comments | « fusl/arch/x32/bits/signal.h ('k') | fusl/arch/x32/bits/stat.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698