summaryrefslogtreecommitdiff
path: root/src/arch/x86/linux/process.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/linux/process.cc')
-rw-r--r--src/arch/x86/linux/process.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/x86/linux/process.cc b/src/arch/x86/linux/process.cc
index 36845971c..65d0238f4 100644
--- a/src/arch/x86/linux/process.cc
+++ b/src/arch/x86/linux/process.cc
@@ -266,10 +266,10 @@ static SyscallDesc syscallDescs64[] = {
/* 41 */ SyscallDesc("socket", socketFunc<X86Linux64>),
/* 42 */ SyscallDesc("connect", connectFunc),
/* 43 */ SyscallDesc("accept", unimplementedFunc),
- /* 44 */ SyscallDesc("sendto", unimplementedFunc),
- /* 45 */ SyscallDesc("recvfrom", unimplementedFunc),
- /* 46 */ SyscallDesc("sendmsg", unimplementedFunc),
- /* 47 */ SyscallDesc("recvmsg", unimplementedFunc),
+ /* 44 */ SyscallDesc("sendto", sendtoFunc),
+ /* 45 */ SyscallDesc("recvfrom", recvfromFunc),
+ /* 46 */ SyscallDesc("sendmsg", sendmsgFunc),
+ /* 47 */ SyscallDesc("recvmsg", recvmsgFunc),
/* 48 */ SyscallDesc("shutdown", shutdownFunc),
/* 49 */ SyscallDesc("bind", bindFunc),
/* 50 */ SyscallDesc("listen", listenFunc),