[commit: ghc] master: Add missing semicolon in Schedule.c (535644f)

git at git.haskell.org git at git.haskell.org
Tue Nov 18 17:08:14 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/535644facb7fb35baacd3e4fd0c8181eadb24379/ghc

>---------------------------------------------------------------

commit 535644facb7fb35baacd3e4fd0c8181eadb24379
Author: Simon Peyton Jones <simonpj at microsoft.com>
Date:   Tue Nov 18 17:07:41 2014 +0000

    Add missing semicolon in Schedule.c
    
    I think this went wrong in 2a6f193b


>---------------------------------------------------------------

535644facb7fb35baacd3e4fd0c8181eadb24379
 rts/Schedule.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rts/Schedule.c b/rts/Schedule.c
index e9b0289..6a06f79 100644
--- a/rts/Schedule.c
+++ b/rts/Schedule.c
@@ -2234,7 +2234,7 @@ suspendThread (StgRegTable *reg, rtsBool interruptible)
   task->incall->suspended_cap = cap;
 
   // Otherwise allocate() will write to invalid memory.
-  cap->r.rCurrentTSO = NULL
+  cap->r.rCurrentTSO = NULL;
 
   ACQUIRE_LOCK(&cap->lock);
 



More information about the ghc-commits mailing list