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

Side by Side Diff: fusl/src/aio/lio_listio.c

Issue 1716893002: [fusl] Remove LFS64 macro (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: apptest rebase 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
« no previous file with comments | « fusl/src/aio/aio_suspend.c ('k') | fusl/src/dirent/alphasort.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include <aio.h> 1 #include <aio.h>
2 #include <errno.h> 2 #include <errno.h>
3 #include <unistd.h> 3 #include <unistd.h>
4 #include <string.h> 4 #include <string.h>
5 #include "pthread_impl.h" 5 #include "pthread_impl.h"
6 #include "libc.h" 6 #include "libc.h"
7 7
8 struct lio_state { 8 struct lio_state {
9 struct sigevent* sev; 9 struct sigevent* sev;
10 int cnt; 10 int cnt;
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 if (pthread_create(&td, &a, wait_thread, st)) { 133 if (pthread_create(&td, &a, wait_thread, st)) {
134 free(st); 134 free(st);
135 errno = EAGAIN; 135 errno = EAGAIN;
136 return -1; 136 return -1;
137 } 137 }
138 pthread_sigmask(SIG_SETMASK, &set, 0); 138 pthread_sigmask(SIG_SETMASK, &set, 0);
139 } 139 }
140 140
141 return 0; 141 return 0;
142 } 142 }
143
144 LFS64(lio_listio);
OLDNEW
« no previous file with comments | « fusl/src/aio/aio_suspend.c ('k') | fusl/src/dirent/alphasort.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698