process.cc (13995:5d459168a680) process.cc (14014:ce216ee5d886)
1/*
2 * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
3 * Copyright (c) 2012 ARM Limited
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

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

92 pTable(pTable),
93 initVirtMem(system->getSystemPort(), this,
94 SETranslatingPortProxy::Always),
95 objFile(obj_file),
96 argv(params->cmd), envp(params->env),
97 executable(params->executable),
98 tgtCwd(normalize(params->cwd)),
99 hostCwd(checkPathRedirect(tgtCwd)),
1/*
2 * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
3 * Copyright (c) 2012 ARM Limited
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

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

92 pTable(pTable),
93 initVirtMem(system->getSystemPort(), this,
94 SETranslatingPortProxy::Always),
95 objFile(obj_file),
96 argv(params->cmd), envp(params->env),
97 executable(params->executable),
98 tgtCwd(normalize(params->cwd)),
99 hostCwd(checkPathRedirect(tgtCwd)),
100 release(params->release),
100 _uid(params->uid), _euid(params->euid),
101 _gid(params->gid), _egid(params->egid),
102 _pid(params->pid), _ppid(params->ppid),
103 _pgid(params->pgid), drivers(params->drivers),
104 fds(make_shared<FDArray>(params->input, params->output, params->errout)),
105 childClearTID(0)
106{
107 if (_pid >= System::maxPID)

--- 437 unchanged lines hidden ---
101 _uid(params->uid), _euid(params->euid),
102 _gid(params->gid), _egid(params->egid),
103 _pid(params->pid), _ppid(params->ppid),
104 _pgid(params->pgid), drivers(params->drivers),
105 fds(make_shared<FDArray>(params->input, params->output, params->errout)),
106 childClearTID(0)
107{
108 if (_pid >= System::maxPID)

--- 437 unchanged lines hidden ---