diff options
Diffstat (limited to 'src/sim/process.hh')
-rw-r--r-- | src/sim/process.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/process.hh b/src/sim/process.hh index 23ed6d661..ae23de420 100644 --- a/src/sim/process.hh +++ b/src/sim/process.hh @@ -87,8 +87,8 @@ class Process : public SimObject inline uint64_t pid() { return _pid; } inline uint64_t ppid() { return _ppid; } inline uint64_t pgid() { return _pgid; } + inline void pgid(uint64_t pgid) { _pgid = pgid; } inline uint64_t tgid() { return _tgid; } - inline void setpgid(uint64_t pgid) { _pgid = pgid; } const char *progName() const { return executable.c_str(); } |