Add wiki links
authorSimon Marlow <marlowsd@gmail.com>
Thu, 20 May 2010 09:59:53 +0000 (09:59 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Thu, 20 May 2010 09:59:53 +0000 (09:59 +0000)
rts/Capability.h
rts/Task.h

index d8eba0d..4b85a13 100644 (file)
@@ -4,6 +4,9 @@
  *
  * Capabilities
  *
+ * For details on the high-level design, see
+ *   http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Scheduler
+ *
  * A Capability holds all the state an OS thread/task needs to run
  * Haskell code: its STG registers, a pointer to its TSO, a nursery
  * etc. During STG execution, a pointer to the Capabilitity is kept in
index 17a443a..2d406aa 100644 (file)
@@ -4,6 +4,9 @@
  *
  * Tasks
  *
+ * For details on the high-level design, see
+ *   http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Scheduler
+ *
  * -------------------------------------------------------------------------*/
 
 #ifndef TASK_H