process.cc (13570:b6484720c6a9) process.cc (13571:a320800ceccf)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 259 unchanged lines hidden (view full) ---

268 /* 43 */ SyscallDesc("accept", acceptFunc<X86Linux64>),
269 /* 44 */ SyscallDesc("sendto", sendtoFunc),
270 /* 45 */ SyscallDesc("recvfrom", recvfromFunc),
271 /* 46 */ SyscallDesc("sendmsg", sendmsgFunc),
272 /* 47 */ SyscallDesc("recvmsg", recvmsgFunc),
273 /* 48 */ SyscallDesc("shutdown", shutdownFunc),
274 /* 49 */ SyscallDesc("bind", bindFunc),
275 /* 50 */ SyscallDesc("listen", listenFunc),
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 259 unchanged lines hidden (view full) ---

268 /* 43 */ SyscallDesc("accept", acceptFunc<X86Linux64>),
269 /* 44 */ SyscallDesc("sendto", sendtoFunc),
270 /* 45 */ SyscallDesc("recvfrom", recvfromFunc),
271 /* 46 */ SyscallDesc("sendmsg", sendmsgFunc),
272 /* 47 */ SyscallDesc("recvmsg", recvmsgFunc),
273 /* 48 */ SyscallDesc("shutdown", shutdownFunc),
274 /* 49 */ SyscallDesc("bind", bindFunc),
275 /* 50 */ SyscallDesc("listen", listenFunc),
276 /* 51 */ SyscallDesc("getsockname", unimplementedFunc),
277 /* 52 */ SyscallDesc("getpeername", unimplementedFunc),
276 /* 51 */ SyscallDesc("getsockname", getsocknameFunc),
277 /* 52 */ SyscallDesc("getpeername", getpeernameFunc),
278 /* 53 */ SyscallDesc("socketpair", socketpairFunc<X86Linux64>),
278 /* 53 */ SyscallDesc("socketpair", socketpairFunc<X86Linux64>),
279 /* 54 */ SyscallDesc("setsockopt", unimplementedFunc),
280 /* 55 */ SyscallDesc("getsockopt", unimplementedFunc),
279 /* 54 */ SyscallDesc("setsockopt", setsockoptFunc),
280 /* 55 */ SyscallDesc("getsockopt", getsockoptFunc),
281 /* 56 */ SyscallDesc("clone", cloneFunc<X86Linux64>),
282 /* 57 */ SyscallDesc("fork", unimplementedFunc),
283 /* 58 */ SyscallDesc("vfork", unimplementedFunc),
284 /* 59 */ SyscallDesc("execve", execveFunc<X86Linux64>),
285 /* 60 */ SyscallDesc("exit", exitFunc),
286 /* 61 */ SyscallDesc("wait4", wait4Func<X86Linux64>),
287 /* 62 */ SyscallDesc("kill", unimplementedFunc),
288 /* 63 */ SyscallDesc("uname", unameFunc),

--- 609 unchanged lines hidden ---
281 /* 56 */ SyscallDesc("clone", cloneFunc<X86Linux64>),
282 /* 57 */ SyscallDesc("fork", unimplementedFunc),
283 /* 58 */ SyscallDesc("vfork", unimplementedFunc),
284 /* 59 */ SyscallDesc("execve", execveFunc<X86Linux64>),
285 /* 60 */ SyscallDesc("exit", exitFunc),
286 /* 61 */ SyscallDesc("wait4", wait4Func<X86Linux64>),
287 /* 62 */ SyscallDesc("kill", unimplementedFunc),
288 /* 63 */ SyscallDesc("uname", unameFunc),

--- 609 unchanged lines hidden ---