summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrandon Potter <brandon.potter@amd.com>2019-08-09 14:03:59 -0400
committerBrandon Potter <Brandon.Potter@amd.com>2019-08-12 16:49:54 +0000
commitf4d21fa24a3a61ac10b764ea97ce4746f60820fb (patch)
tree9fb2c6ea1ab6ec2d067e789fbfbb827c923130ce /src
parentdbf18ac11125f08114b8bc13a9140a1b7653054c (diff)
downloadgem5-f4d21fa24a3a61ac10b764ea97ce4746f60820fb.tar.xz
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 <anthony.gutierrez@amd.com> Maintainer: Brandon Potter <Brandon.Potter@amd.com> Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src')
-rw-r--r--src/sim/process.hh2
-rw-r--r--src/sim/syscall_emul.cc4
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;
}