summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rts/Capability.h3
-rw-r--r--rts/Task.h3
2 files changed, 6 insertions, 0 deletions
diff --git a/rts/Capability.h b/rts/Capability.h
index d8eba0d733..4b85a13c0b 100644
--- a/rts/Capability.h
+++ b/rts/Capability.h
@@ -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
diff --git a/rts/Task.h b/rts/Task.h
index 17a443ad6b..2d406aa457 100644
--- a/rts/Task.h
+++ b/rts/Task.h
@@ -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