From f4d21fa24a3a61ac10b764ea97ce4746f60820fb Mon Sep 17 00:00:00 2001 From: Brandon Potter Date: Fri, 9 Aug 2019 14:03:59 -0400 Subject: [PATCH] sim-se: rename Process::setpgid member The getter methods to access these types of members do not have a 'get' string in the method names. To make the interface a bit more consistent, remove the 'set' part of the member name. Change-Id: I04c56bd9d9feb1cf68ff50a1152083ea57ea7c62 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20008 Reviewed-by: Anthony Gutierrez Maintainer: Brandon Potter Tested-by: kokoro --- src/sim/process.hh | 2 +- src/sim/syscall_emul.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 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(); } diff --git a/src/sim/syscall_emul.cc b/src/sim/syscall_emul.cc index 088dcbcce..f2f4f276f 100644 --- a/src/sim/syscall_emul.cc +++ b/src/sim/syscall_emul.cc @@ -1001,7 +1001,7 @@ setpgidFunc(SyscallDesc *desc, int callnum, ThreadContext *tc) return -EINVAL; if (pid == 0) { - process->setpgid(process->pid()); + process->pgid(process->pid()); return 0; } @@ -1020,7 +1020,7 @@ setpgidFunc(SyscallDesc *desc, int callnum, ThreadContext *tc) } assert(matched_ph); - matched_ph->setpgid((pgid == 0) ? matched_ph->pid() : pgid); + matched_ph->pgid((pgid == 0) ? matched_ph->pid() : pgid); return 0; } -- 2.30.2