process.cc (11851:824055fe6b30) process.cc (13570:b6484720c6a9)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

62 return 0;
63}
64
65
66SyscallDesc SparcSolarisProcess::syscallDescs[] = {
67 /* 0 */ SyscallDesc("syscall", unimplementedFunc),
68 /* 1 */ SyscallDesc("exit", exitFunc),
69 /* 2 */ SyscallDesc("fork", unimplementedFunc),
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

62 return 0;
63}
64
65
66SyscallDesc SparcSolarisProcess::syscallDescs[] = {
67 /* 0 */ SyscallDesc("syscall", unimplementedFunc),
68 /* 1 */ SyscallDesc("exit", exitFunc),
69 /* 2 */ SyscallDesc("fork", unimplementedFunc),
70 /* 3 */ SyscallDesc("read", readFunc),
71 /* 4 */ SyscallDesc("write", writeFunc),
70 /* 3 */ SyscallDesc("read", readFunc<SparcSolaris>),
71 /* 4 */ SyscallDesc("write", writeFunc<SparcSolaris>),
72 /* 5 */ SyscallDesc("open", openFunc<SparcSolaris>),
73 /* 6 */ SyscallDesc("close", closeFunc),
74 /* 7 */ SyscallDesc("wait", unimplementedFunc),
75 /* 8 */ SyscallDesc("creat", unimplementedFunc),
76 /* 9 */ SyscallDesc("link", unimplementedFunc),
77 /* 10 */ SyscallDesc("unlink", unlinkFunc),
78 /* 11 */ SyscallDesc("exec", unimplementedFunc),
79 /* 12 */ SyscallDesc("chdir", unimplementedFunc),

--- 264 unchanged lines hidden ---
72 /* 5 */ SyscallDesc("open", openFunc<SparcSolaris>),
73 /* 6 */ SyscallDesc("close", closeFunc),
74 /* 7 */ SyscallDesc("wait", unimplementedFunc),
75 /* 8 */ SyscallDesc("creat", unimplementedFunc),
76 /* 9 */ SyscallDesc("link", unimplementedFunc),
77 /* 10 */ SyscallDesc("unlink", unlinkFunc),
78 /* 11 */ SyscallDesc("exec", unimplementedFunc),
79 /* 12 */ SyscallDesc("chdir", unimplementedFunc),

--- 264 unchanged lines hidden ---