[commit: ghc] master: rts: detabify/dewhitespace Sparks.c (7d48356)
git at git.haskell.org
git at git.haskell.org
Wed Aug 20 17:32:19 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/7d4835603ef2e1f2c65e4c0f4c664fca50d74591/ghc
>---------------------------------------------------------------
commit 7d4835603ef2e1f2c65e4c0f4c664fca50d74591
Author: Austin Seipp <austin at well-typed.com>
Date: Wed Aug 20 12:26:59 2014 -0500
rts: detabify/dewhitespace Sparks.c
Signed-off-by: Austin Seipp <austin at well-typed.com>
>---------------------------------------------------------------
7d4835603ef2e1f2c65e4c0f4c664fca50d74591
rts/Sparks.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/rts/Sparks.c b/rts/Sparks.c
index d54a1f1..14b70c5 100644
--- a/rts/Sparks.c
+++ b/rts/Sparks.c
@@ -67,7 +67,7 @@ newSpark (StgRegTable *reg, StgClosure *p)
/* overflowing the spark pool */
cap->spark_stats.overflowed++;
traceEventSparkOverflow(cap);
- }
+ }
} else {
cap->spark_stats.dud++;
traceEventSparkDud(cap);
@@ -158,11 +158,11 @@ pruneSparkQueue (Capability *cap)
while (currInd != oldBotInd ) {
/* must use != here, wrap-around at size
- subtle: loop not entered if queue empty
+ subtle: loop not entered if queue empty
*/
/* check element at currInd. if valuable, evacuate and move to
- botInd, otherwise move on */
+ botInd, otherwise move on */
spark = elements[currInd];
// We have to be careful here: in the parallel GC, another
More information about the ghc-commits
mailing list