process.cc (11851:824055fe6b30) process.cc (13570:b6484720c6a9)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * Copyright (c) 2009 The University of Edinburgh
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

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

64 name.copyOut(tc->getMemProxy());
65 return 0;
66}
67
68SyscallDesc PowerLinuxProcess::syscallDescs[] = {
69 /* 0 */ SyscallDesc("syscall", unimplementedFunc),
70 /* 1 */ SyscallDesc("exit", exitFunc),
71 /* 2 */ SyscallDesc("fork", unimplementedFunc),
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * Copyright (c) 2009 The University of Edinburgh
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

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

64 name.copyOut(tc->getMemProxy());
65 return 0;
66}
67
68SyscallDesc PowerLinuxProcess::syscallDescs[] = {
69 /* 0 */ SyscallDesc("syscall", unimplementedFunc),
70 /* 1 */ SyscallDesc("exit", exitFunc),
71 /* 2 */ SyscallDesc("fork", unimplementedFunc),
72 /* 3 */ SyscallDesc("read", readFunc),
73 /* 4 */ SyscallDesc("write", writeFunc),
72 /* 3 */ SyscallDesc("read", readFunc<PowerLinux>),
73 /* 4 */ SyscallDesc("write", writeFunc<PowerLinux>),
74 /* 5 */ SyscallDesc("open", openFunc<PowerLinux>),
75 /* 6 */ SyscallDesc("close", closeFunc),
76 /* 7 */ SyscallDesc("waitpid", unimplementedFunc), //???
77 /* 8 */ SyscallDesc("creat", unimplementedFunc),
78 /* 9 */ SyscallDesc("link", unimplementedFunc),
79 /* 10 */ SyscallDesc("unlink", unlinkFunc),
80 /* 11 */ SyscallDesc("execve", unimplementedFunc),
81 /* 12 */ SyscallDesc("chdir", unimplementedFunc),

--- 375 unchanged lines hidden ---
74 /* 5 */ SyscallDesc("open", openFunc<PowerLinux>),
75 /* 6 */ SyscallDesc("close", closeFunc),
76 /* 7 */ SyscallDesc("waitpid", unimplementedFunc), //???
77 /* 8 */ SyscallDesc("creat", unimplementedFunc),
78 /* 9 */ SyscallDesc("link", unimplementedFunc),
79 /* 10 */ SyscallDesc("unlink", unlinkFunc),
80 /* 11 */ SyscallDesc("execve", unimplementedFunc),
81 /* 12 */ SyscallDesc("chdir", unimplementedFunc),

--- 375 unchanged lines hidden ---