process.cc (5513:8631b29873a2) process.cc (5748:f28f020f3006)
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;

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

75 /* 9 */ SyscallDesc("link", unimplementedFunc),
76 /* 10 */ SyscallDesc("unlink", unlinkFunc),
77 /* 11 */ SyscallDesc("exec", unimplementedFunc),
78 /* 12 */ SyscallDesc("chdir", unimplementedFunc),
79 /* 13 */ SyscallDesc("time", unimplementedFunc),
80 /* 14 */ SyscallDesc("mknod", unimplementedFunc),
81 /* 15 */ SyscallDesc("chmod", chmodFunc<Solaris>),
82 /* 16 */ SyscallDesc("chown", chownFunc),
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;

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

75 /* 9 */ SyscallDesc("link", unimplementedFunc),
76 /* 10 */ SyscallDesc("unlink", unlinkFunc),
77 /* 11 */ SyscallDesc("exec", unimplementedFunc),
78 /* 12 */ SyscallDesc("chdir", unimplementedFunc),
79 /* 13 */ SyscallDesc("time", unimplementedFunc),
80 /* 14 */ SyscallDesc("mknod", unimplementedFunc),
81 /* 15 */ SyscallDesc("chmod", chmodFunc<Solaris>),
82 /* 16 */ SyscallDesc("chown", chownFunc),
83 /* 17 */ SyscallDesc("brk", obreakFunc),
83 /* 17 */ SyscallDesc("brk", brkFunc),
84 /* 18 */ SyscallDesc("stat", unimplementedFunc),
85 /* 19 */ SyscallDesc("lseek", lseekFunc),
86 /* 20 */ SyscallDesc("getpid", getpidFunc),
87 /* 21 */ SyscallDesc("mount", unimplementedFunc),
88 /* 22 */ SyscallDesc("umount", unimplementedFunc),
89 /* 23 */ SyscallDesc("setuid", setuidFunc),
90 /* 24 */ SyscallDesc("getuid", getuidFunc),
91 /* 25 */ SyscallDesc("stime", unimplementedFunc),

--- 251 unchanged lines hidden ---
84 /* 18 */ SyscallDesc("stat", unimplementedFunc),
85 /* 19 */ SyscallDesc("lseek", lseekFunc),
86 /* 20 */ SyscallDesc("getpid", getpidFunc),
87 /* 21 */ SyscallDesc("mount", unimplementedFunc),
88 /* 22 */ SyscallDesc("umount", unimplementedFunc),
89 /* 23 */ SyscallDesc("setuid", setuidFunc),
90 /* 24 */ SyscallDesc("getuid", getuidFunc),
91 /* 25 */ SyscallDesc("stime", unimplementedFunc),

--- 251 unchanged lines hidden ---