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

Unified Diff: fusl/src/network/sendto.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/sendmsg.c ('k') | fusl/src/network/setsockopt.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/src/network/sendto.c
diff --git a/fusl/src/network/sendto.c b/fusl/src/network/sendto.c
index c3a7367cba2d2dfdd0b7462cdeb1d19a7ad6f0ef..6fe0aeaf27d5cbb0a08a2dc4686994bbacd44f91 100644
--- a/fusl/src/network/sendto.c
+++ b/fusl/src/network/sendto.c
@@ -8,5 +8,5 @@ ssize_t sendto(int fd,
int flags,
const struct sockaddr* addr,
socklen_t alen) {
- return socketcall_cp(sendto, fd, buf, len, flags, addr, alen);
+ return syscall_cp(SYS_sendto, fd, buf, len, flags, addr, alen);
}
« no previous file with comments | « fusl/src/network/sendmsg.c ('k') | fusl/src/network/setsockopt.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698