process.cc (11886:43b882cada33) 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;

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

123 return 1;
124}
125
126
127SyscallDesc AlphaLinuxProcess::syscallDescs[] = {
128 /* 0 */ SyscallDesc("osf_syscall", unimplementedFunc),
129 /* 1 */ SyscallDesc("exit", exitFunc),
130 /* 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;

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

123 return 1;
124}
125
126
127SyscallDesc AlphaLinuxProcess::syscallDescs[] = {
128 /* 0 */ SyscallDesc("osf_syscall", unimplementedFunc),
129 /* 1 */ SyscallDesc("exit", exitFunc),
130 /* 2 */ SyscallDesc("fork", unimplementedFunc),
131 /* 3 */ SyscallDesc("read", readFunc),
132 /* 4 */ SyscallDesc("write", writeFunc),
131 /* 3 */ SyscallDesc("read", readFunc<AlphaLinux>),
132 /* 4 */ SyscallDesc("write", writeFunc<AlphaLinux>),
133 /* 5 */ SyscallDesc("osf_old_open", unimplementedFunc),
134 /* 6 */ SyscallDesc("close", closeFunc),
135 /* 7 */ SyscallDesc("osf_wait4", unimplementedFunc),
136 /* 8 */ SyscallDesc("osf_old_creat", unimplementedFunc),
137 /* 9 */ SyscallDesc("link", unimplementedFunc),
138 /* 10 */ SyscallDesc("unlink", unlinkFunc),
139 /* 11 */ SyscallDesc("osf_execve", unimplementedFunc),
140 /* 12 */ SyscallDesc("chdir", unimplementedFunc),

--- 451 unchanged lines hidden ---
133 /* 5 */ SyscallDesc("osf_old_open", unimplementedFunc),
134 /* 6 */ SyscallDesc("close", closeFunc),
135 /* 7 */ SyscallDesc("osf_wait4", unimplementedFunc),
136 /* 8 */ SyscallDesc("osf_old_creat", unimplementedFunc),
137 /* 9 */ SyscallDesc("link", unimplementedFunc),
138 /* 10 */ SyscallDesc("unlink", unlinkFunc),
139 /* 11 */ SyscallDesc("osf_execve", unimplementedFunc),
140 /* 12 */ SyscallDesc("chdir", unimplementedFunc),

--- 451 unchanged lines hidden ---