process.hh (13883:f44e21d3aaa7) process.hh (14014:ce216ee5d886)
1/*
2 * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
3 * Copyright (c) 2001-2005 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

219 * The tgt member and host member may differ if the path for the current
220 * working directory is redirected to point to a different location
221 * (i.e. `cd /proc` should point to '$(gem5_repo)/m5out/fs/proc'
222 * instead of '/proc').
223 */
224 std::string tgtCwd;
225 std::string hostCwd;
226
1/*
2 * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
3 * Copyright (c) 2001-2005 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

219 * The tgt member and host member may differ if the path for the current
220 * working directory is redirected to point to a different location
221 * (i.e. `cd /proc` should point to '$(gem5_repo)/m5out/fs/proc'
222 * instead of '/proc').
223 */
224 std::string tgtCwd;
225 std::string hostCwd;
226
227 // Syscall emulation uname release.
228 std::string release;
229
227 // Id of the owner of the process
228 uint64_t _uid;
229 uint64_t _euid;
230 uint64_t _gid;
231 uint64_t _egid;
232
233 // pid of the process and it's parent
234 uint64_t _pid;

--- 23 unchanged lines hidden ---
230 // Id of the owner of the process
231 uint64_t _uid;
232 uint64_t _euid;
233 uint64_t _gid;
234 uint64_t _egid;
235
236 // pid of the process and it's parent
237 uint64_t _pid;

--- 23 unchanged lines hidden ---