1/*
2 * Copyright (c) 2012-2013, 2015 ARM Limited
3 * Copyright (c) 2015 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

211SyscallReturn ftruncate64Func(SyscallDesc *desc, int num,
212 Process *p, ThreadContext *tc);
213
214
215/// Target umask() handler.
216SyscallReturn umaskFunc(SyscallDesc *desc, int num,
217 Process *p, ThreadContext *tc);
218
219/// Target gettid() handler.
220SyscallReturn gettidFunc(SyscallDesc *desc, int num,
221 Process *p, ThreadContext *tc);
222
223/// Target chown() handler.
224SyscallReturn chownFunc(SyscallDesc *desc, int num,
225 Process *p, ThreadContext *tc);
226
227/// Target setpgid() handler.
228SyscallReturn setpgidFunc(SyscallDesc *desc, int num,
229 Process *p, ThreadContext *tc);
230
231/// Target fchown() handler.
232SyscallReturn fchownFunc(SyscallDesc *desc, int num,
233 Process *p, ThreadContext *tc);
234
235/// Target dup() handler.
236SyscallReturn dupFunc(SyscallDesc *desc, int num,
237 Process *process, ThreadContext *tc);

--- 1449 unchanged lines hidden ---