Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: tools/cpu.sh

Issue 1004763002: Reactivate all the cores in cpu.sh. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/cpu.sh
diff --git a/tools/cpu.sh b/tools/cpu.sh
index 8e8a243c6058803c8356ad4c75dce601bd0cd737..0597d09ea99647eae832b755e9b59995a3f1d4d0 100755
--- a/tools/cpu.sh
+++ b/tools/cpu.sh
@@ -31,7 +31,7 @@ single_core() {
all_cores() {
echo "Reactivating all CPU cores"
- for (( i=2; i<=$MAXID; i++ )); do
+ for (( i=1; i<=$MAXID; i++ )); do
echo 1 > $CPUPATH/cpu$i/online
done
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698