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

Side by Side Diff: fusl/src/aio/aio_suspend.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.c ('k') | fusl/src/aio/lio_listio.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 <time.h> 3 #include <time.h>
4 #include "atomic.h" 4 #include "atomic.h"
5 #include "libc.h" 5 #include "libc.h"
6 #include "pthread_impl.h" 6 #include "pthread_impl.h"
7 7
8 extern volatile int __aio_fut; 8 extern volatile int __aio_fut;
9 9
10 int aio_suspend(const struct aiocb* const cbs[], 10 int aio_suspend(const struct aiocb* const cbs[],
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 switch (ret) { 73 switch (ret) {
74 case ETIMEDOUT: 74 case ETIMEDOUT:
75 ret = EAGAIN; 75 ret = EAGAIN;
76 case ECANCELED: 76 case ECANCELED:
77 case EINTR: 77 case EINTR:
78 errno = ret; 78 errno = ret;
79 return -1; 79 return -1;
80 } 80 }
81 } 81 }
82 } 82 }
83
84 LFS64(aio_suspend);
OLDNEW
« no previous file with comments | « fusl/src/aio/aio.c ('k') | fusl/src/aio/lio_listio.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698