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

Unified Diff: fusl/src/linux/epoll.c

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too 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 side-by-side diff with in-line comments
Download patch
Index: fusl/src/linux/epoll.c
diff --git a/fusl/src/linux/epoll.c b/fusl/src/linux/epoll.c
index deff5b101aade0dde5efff1cad5272b3e782ef83..fb6f0ef8da53d3929cdcb2e88e3c22cd148b3fed 100644
--- a/fusl/src/linux/epoll.c
+++ b/fusl/src/linux/epoll.c
@@ -3,35 +3,36 @@
#include <errno.h>
#include "syscall.h"
-int epoll_create(int size)
-{
- return epoll_create1(0);
+int epoll_create(int size) {
+ return epoll_create1(0);
}
-int epoll_create1(int flags)
-{
- int r = __syscall(SYS_epoll_create1, flags);
+int epoll_create1(int flags) {
+ int r = __syscall(SYS_epoll_create1, flags);
#ifdef SYS_epoll_create
- if (r==-ENOSYS && !flags) r = __syscall(SYS_epoll_create, 1);
+ if (r == -ENOSYS && !flags)
+ r = __syscall(SYS_epoll_create, 1);
#endif
- return __syscall_ret(r);
+ return __syscall_ret(r);
}
-int epoll_ctl(int fd, int op, int fd2, struct epoll_event *ev)
-{
- return syscall(SYS_epoll_ctl, fd, op, fd2, ev);
+int epoll_ctl(int fd, int op, int fd2, struct epoll_event* ev) {
+ return syscall(SYS_epoll_ctl, fd, op, fd2, ev);
}
-int epoll_pwait(int fd, struct epoll_event *ev, int cnt, int to, const sigset_t *sigs)
-{
- int r = __syscall(SYS_epoll_pwait, fd, ev, cnt, to, sigs, _NSIG/8);
+int epoll_pwait(int fd,
+ struct epoll_event* ev,
+ int cnt,
+ int to,
+ const sigset_t* sigs) {
+ int r = __syscall(SYS_epoll_pwait, fd, ev, cnt, to, sigs, _NSIG / 8);
#ifdef SYS_epoll_wait
- if (r==-ENOSYS && !sigs) r = __syscall(SYS_epoll_wait, fd, ev, cnt, to);
+ if (r == -ENOSYS && !sigs)
+ r = __syscall(SYS_epoll_wait, fd, ev, cnt, to);
#endif
- return __syscall_ret(r);
+ return __syscall_ret(r);
}
-int epoll_wait(int fd, struct epoll_event *ev, int cnt, int to)
-{
- return epoll_pwait(fd, ev, cnt, to, 0);
+int epoll_wait(int fd, struct epoll_event* ev, int cnt, int to) {
+ return epoll_pwait(fd, ev, cnt, to, 0);
}

Powered by Google App Engine
This is Rietveld 408576698