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

Side by Side Diff: fusl/src/select/pselect.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 unified diff | Download patch
OLDNEW
1 #include <sys/select.h> 1 #include <sys/select.h>
2 #include <signal.h> 2 #include <signal.h>
3 #include <stdint.h> 3 #include <stdint.h>
4 #include "syscall.h" 4 #include "syscall.h"
5 #include "libc.h" 5 #include "libc.h"
6 6
7 int pselect(int n, fd_set *restrict rfds, fd_set *restrict wfds, fd_set *restric t efds, const struct timespec *restrict ts, const sigset_t *restrict mask) 7 int pselect(int n,
8 { 8 fd_set* restrict rfds,
9 » syscall_arg_t data[2] = { (uintptr_t)mask, _NSIG/8 }; 9 fd_set* restrict wfds,
10 » struct timespec ts_tmp; 10 fd_set* restrict efds,
11 » if (ts) ts_tmp = *ts; 11 const struct timespec* restrict ts,
12 » return syscall_cp(SYS_pselect6, n, rfds, wfds, efds, ts ? &ts_tmp : 0, d ata); 12 const sigset_t* restrict mask) {
13 syscall_arg_t data[2] = {(uintptr_t)mask, _NSIG / 8};
14 struct timespec ts_tmp;
15 if (ts)
16 ts_tmp = *ts;
17 return syscall_cp(SYS_pselect6, n, rfds, wfds, efds, ts ? &ts_tmp : 0, data);
13 } 18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698