Commit 99fb0dc1 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

Revert "testing: delete unused stopAlarm()"

This reverts commit ed8c62b7.

Turns out it was needed in later commits.

Change-Id: I07a7bc2429976d8a5a89f915a11625c118b85500
Reviewed-on: https://go-review.googlesource.com/36113
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: 's avatarJoe Tsai <thebrokentoaster@gmail.com>
parent 87130030
...@@ -1027,6 +1027,13 @@ func startAlarm() { ...@@ -1027,6 +1027,13 @@ func startAlarm() {
} }
} }
// stopAlarm turns off the alarm.
func stopAlarm() {
if *timeout > 0 {
timer.Stop()
}
}
func parseCpuList() { func parseCpuList() {
for _, val := range strings.Split(*cpuListStr, ",") { for _, val := range strings.Split(*cpuListStr, ",") {
val = strings.TrimSpace(val) val = strings.TrimSpace(val)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment