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

Unified Diff: fusl/src/network/sendmsg.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/recvmsg.c ('k') | fusl/src/network/sendto.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/src/network/sendmsg.c
diff --git a/fusl/src/network/sendmsg.c b/fusl/src/network/sendmsg.c
index 9e730f2933403ad974f6c6bd82f3c094145b3735..0c5ae9500a3fd87905739b0c80d15a19f3b96891 100644
--- a/fusl/src/network/sendmsg.c
+++ b/fusl/src/network/sendmsg.c
@@ -25,5 +25,5 @@ ssize_t sendmsg(int fd, const struct msghdr* msg, int flags) {
}
}
#endif
- return socketcall_cp(sendmsg, fd, msg, flags, 0, 0, 0);
+ return syscall_cp(SYS_sendmsg, fd, msg, flags, 0, 0, 0);
}
« no previous file with comments | « fusl/src/network/recvmsg.c ('k') | fusl/src/network/sendto.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698