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

Side by Side Diff: sysdeps/nacl/irt_syscalls.h

Issue 200463002: Fix some style issues in sysdeps/nacl/irt_syscalls.* (Closed) Base URL: https://git.chromium.org/git/native_client/nacl-glibc@master
Patch Set: Created 6 years, 9 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 | « no previous file | sysdeps/nacl/irt_syscalls.c » ('j') | sysdeps/nacl/irt_syscalls.c » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef _IRT_SYSCALLS_H 1 #ifndef _IRT_SYSCALLS_H
2 #define _IRT_SYSCALLS_H 2 #define _IRT_SYSCALLS_H
3 3
4 #include <sys/types.h> 4 #include <sys/types.h>
5 #include <sys/epoll.h> 5 #include <sys/epoll.h>
6 #include <sys/select.h> 6 #include <sys/select.h>
7 #include <poll.h> 7 #include <poll.h>
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <fcntl.h> 9 #include <fcntl.h>
10 #include <time.h> 10 #include <time.h>
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 int *count); 69 int *count);
70 extern int (*__nacl_irt_recvmsg) (int sockfd, struct msghdr *msg, 70 extern int (*__nacl_irt_recvmsg) (int sockfd, struct msghdr *msg,
71 int flags, int *count); 71 int flags, int *count);
72 extern int (*__nacl_irt_recvfrom) (int sockfd, void *buf, size_t len, int flags, 72 extern int (*__nacl_irt_recvfrom) (int sockfd, void *buf, size_t len, int flags,
73 struct sockaddr *dest_addr, socklen_t* addrlen, int *count); 73 struct sockaddr *dest_addr, socklen_t* addrlen, int *count);
74 extern int (*__nacl_irt_select) (int nfds, fd_set *readfds, 74 extern int (*__nacl_irt_select) (int nfds, fd_set *readfds,
75 fd_set *writefds, fd_set *exceptfds, 75 fd_set *writefds, fd_set *exceptfds,
76 const struct timeval *timeout, int *count); 76 const struct timeval *timeout, int *count);
77 extern int (*__nacl_irt_pselect) (int nfds, fd_set *readfds, 77 extern int (*__nacl_irt_pselect) (int nfds, fd_set *readfds,
78 fd_set *writefds, fd_set *exceptfds, const struct timeval *timeout, 78 fd_set *writefds, fd_set *exceptfds, const struct timeval *timeout,
79 » » » void* sigmask, int *count); 79 void* sigmask, int *count);
80 extern int (*__nacl_irt_getpeername) (int sockfd, struct sockaddr *addr, 80 extern int (*__nacl_irt_getpeername) (int sockfd, struct sockaddr *addr,
81 socklen_t *addrlen); 81 socklen_t *addrlen);
82 extern int (*__nacl_irt_getsockname) (int sockfd, struct sockaddr *addr, 82 extern int (*__nacl_irt_getsockname) (int sockfd, struct sockaddr *addr,
83 socklen_t *addrlen); 83 socklen_t *addrlen);
84 extern int (*__nacl_irt_getsockopt) (int sockfd, int level, int optname, 84 extern int (*__nacl_irt_getsockopt) (int sockfd, int level, int optname,
85 void *optval, socklen_t *optlen); 85 void *optval, socklen_t *optlen);
86 extern int (*__nacl_irt_setsockopt) (int sockfd, int level, int optname, 86 extern int (*__nacl_irt_setsockopt) (int sockfd, int level, int optname,
87 const void *optval, socklen_t optlen); 87 const void *optval, socklen_t optlen);
88 extern int (*__nacl_irt_socketpair) (int domain, int type, int protocol, 88 extern int (*__nacl_irt_socketpair) (int domain, int type, int protocol,
89 int sv[2]); 89 int sv[2]);
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 struct robust_list_head 222 struct robust_list_head
223 { 223 {
224 void *list; 224 void *list;
225 long int futex_offset; 225 long int futex_offset;
226 void *list_op_pending; 226 void *list_op_pending;
227 }; 227 };
228 #endif 228 #endif
229 229
230 #endif 230 #endif
231 #endif 231 #endif
OLDNEW
« no previous file with comments | « no previous file | sysdeps/nacl/irt_syscalls.c » ('j') | sysdeps/nacl/irt_syscalls.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698