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

Unified Diff: fusl/src/network/recvmsg.c

Issue 1730723002: [fusl] Remove socketcall abstraction (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
« no previous file with comments | « fusl/src/network/recvfrom.c ('k') | fusl/src/network/sendmsg.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/src/network/recvmsg.c
diff --git a/fusl/src/network/recvmsg.c b/fusl/src/network/recvmsg.c
index cf37273fa739936cc0a59ad462a92063e5baac10..d13b35f8d0d878655d382a3fcef3b98d24e49b14 100644
--- a/fusl/src/network/recvmsg.c
+++ b/fusl/src/network/recvmsg.c
@@ -13,7 +13,7 @@ ssize_t recvmsg(int fd, struct msghdr* msg, int flags) {
msg = &h;
}
#endif
- r = socketcall_cp(recvmsg, fd, msg, flags, 0, 0, 0);
+ r = syscall_cp(SYS_recvmsg, fd, msg, flags, 0, 0, 0);
#if LONG_MAX > INT_MAX
if (orig)
*orig = h;
« no previous file with comments | « fusl/src/network/recvfrom.c ('k') | fusl/src/network/sendmsg.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698