summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author Elliott Hughes <enh@google.com> 2012-04-03 14:48:52 -0700
committer Elliott Hughes <enh@google.com> 2012-04-03 14:48:52 -0700
commit0879504b6ac72f6d93dcccf9e1b7e1769a73b230 (patch)
tree15ab3cb755f2c065b97d8b9e0aaec0a3e74ec88f /src
parent409d273a3a57158faaa520ff5f33508367f759f1 (diff)
Fix an obsolete comment.
Change-Id: I89e97b070a3cc5c413d8bc44504ff2235942039d
Diffstat (limited to 'src')
-rw-r--r--src/runtime.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime.cc b/src/runtime.cc
index bedeb27f56..f434fed1d0 100644
--- a/src/runtime.cc
+++ b/src/runtime.cc
@@ -809,7 +809,7 @@ void Runtime::BlockSignals() {
if (sigaddset(&sigset, SIGQUIT) == -1) {
PLOG(ERROR) << "sigaddset SIGQUIT failed";
}
- // SIGUSR1 is used to initiate a heap dump.
+ // SIGUSR1 is used to initiate a GC.
if (sigaddset(&sigset, SIGUSR1) == -1) {
PLOG(ERROR) << "sigaddset SIGUSR1 failed";
}