process.cc (12414:2d4fd1b63124) process.cc (12415:82ba0805eb56)
1/*
2 * Copyright (c) 2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * Copyright (c) 2016 The University of Virginia
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

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

163 {91, SyscallDesc("capset")},
164 {92, SyscallDesc("personality")},
165 {93, SyscallDesc("exit", exitFunc)},
166 {94, SyscallDesc("exit_group", exitGroupFunc)},
167 {95, SyscallDesc("waitid")},
168 {96, SyscallDesc("set_tid_address", setTidAddressFunc)},
169 {97, SyscallDesc("unshare")},
170 {98, SyscallDesc("futex", futexFunc<RiscvLinux>)},
1/*
2 * Copyright (c) 2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * Copyright (c) 2016 The University of Virginia
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

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

163 {91, SyscallDesc("capset")},
164 {92, SyscallDesc("personality")},
165 {93, SyscallDesc("exit", exitFunc)},
166 {94, SyscallDesc("exit_group", exitGroupFunc)},
167 {95, SyscallDesc("waitid")},
168 {96, SyscallDesc("set_tid_address", setTidAddressFunc)},
169 {97, SyscallDesc("unshare")},
170 {98, SyscallDesc("futex", futexFunc<RiscvLinux>)},
171 {99, SyscallDesc("set_robust_list")},
172 {100, SyscallDesc("get_robust_list")},
171 {99, SyscallDesc("set_robust_list", ignoreFunc, SyscallDesc::WarnOnce)},
172 {100, SyscallDesc("get_robust_list", ignoreFunc, SyscallDesc::WarnOnce)},
173 {101, SyscallDesc("nanosleep")},
174 {102, SyscallDesc("getitimer")},
175 {103, SyscallDesc("setitimer")},
176 {104, SyscallDesc("kexec_load")},
177 {105, SyscallDesc("init_module")},
178 {106, SyscallDesc("delete_module")},
179 {107, SyscallDesc("timer_create")},
180 {108, SyscallDesc("timer_gettime")},

--- 232 unchanged lines hidden ---
173 {101, SyscallDesc("nanosleep")},
174 {102, SyscallDesc("getitimer")},
175 {103, SyscallDesc("setitimer")},
176 {104, SyscallDesc("kexec_load")},
177 {105, SyscallDesc("init_module")},
178 {106, SyscallDesc("delete_module")},
179 {107, SyscallDesc("timer_create")},
180 {108, SyscallDesc("timer_gettime")},

--- 232 unchanged lines hidden ---