summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
Diffstat (limited to 'rts')
-rw-r--r--rts/Capability.h2
-rw-r--r--rts/Makefile4
-rw-r--r--rts/Stable.c2
-rw-r--r--rts/Task.h2
-rw-r--r--rts/Ticky.c2
-rw-r--r--rts/ghc.mk6
-rw-r--r--rts/sm/Compact.c2
-rw-r--r--rts/sm/Compact.h2
-rw-r--r--rts/sm/Evac.c2
-rw-r--r--rts/sm/Evac.h2
-rw-r--r--rts/sm/GC.c2
-rw-r--r--rts/sm/GC.h2
-rw-r--r--rts/sm/GCTDecl.h2
-rw-r--r--rts/sm/GCThread.h2
-rw-r--r--rts/sm/GCUtils.c2
-rw-r--r--rts/sm/GCUtils.h2
-rw-r--r--rts/sm/MarkStack.h2
-rw-r--r--rts/sm/MarkWeak.c2
-rw-r--r--rts/sm/MarkWeak.h2
-rw-r--r--rts/sm/Scav.c2
-rw-r--r--rts/sm/Scav.h2
-rw-r--r--rts/sm/Storage.c2
-rw-r--r--rts/sm/Sweep.c2
-rw-r--r--rts/sm/Sweep.h2
24 files changed, 27 insertions, 27 deletions
diff --git a/rts/Capability.h b/rts/Capability.h
index 9de47357c4..f342d92244 100644
--- a/rts/Capability.h
+++ b/rts/Capability.h
@@ -5,7 +5,7 @@
* Capabilities
*
* For details on the high-level design, see
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Scheduler
+ * http://ghc.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
diff --git a/rts/Makefile b/rts/Makefile
index 15fa685e02..09ff7ea6b5 100644
--- a/rts/Makefile
+++ b/rts/Makefile
@@ -5,8 +5,8 @@
# This file is part of the GHC build system.
#
# To understand how the build system works and how to modify it, see
-# http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
-# http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
+# http://ghc.haskell.org/trac/ghc/wiki/Building/Architecture
+# http://ghc.haskell.org/trac/ghc/wiki/Building/Modifying
#
# -----------------------------------------------------------------------------
diff --git a/rts/Stable.c b/rts/Stable.c
index 0dade10105..ec74b0da13 100644
--- a/rts/Stable.c
+++ b/rts/Stable.c
@@ -83,7 +83,7 @@
Future plans for stable ptrs include distinguishing them by the
generation of the pointed object. See
- http://hackage.haskell.org/trac/ghc/ticket/7670 for details.
+ http://ghc.haskell.org/trac/ghc/ticket/7670 for details.
*/
snEntry *stable_name_table = NULL;
diff --git a/rts/Task.h b/rts/Task.h
index 052647b327..4e0e13e93c 100644
--- a/rts/Task.h
+++ b/rts/Task.h
@@ -5,7 +5,7 @@
* Tasks
*
* For details on the high-level design, see
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Scheduler
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Scheduler
*
* -------------------------------------------------------------------------*/
diff --git a/rts/Ticky.c b/rts/Ticky.c
index e1e981b6df..4547c0b249 100644
--- a/rts/Ticky.c
+++ b/rts/Ticky.c
@@ -596,7 +596,7 @@ printRegisteredCounterInfo (FILE *tf)
StgEntCounter *p;
if ( ticky_entry_ctrs != NULL ) {
- fprintf(tf,"\nThe following table is explained by http://hackage.haskell.org/trac/ghc/wiki/Debugging/TickyTicky\nAll allocation numbers are in bytes.\n");
+ fprintf(tf,"\nThe following table is explained by http://ghc.haskell.org/trac/ghc/wiki/Debugging/TickyTicky\nAll allocation numbers are in bytes.\n");
fprintf(tf,"\n**************************************************\n\n");
}
fprintf(tf, "%11s%11s%11s %-23s %s\n",
diff --git a/rts/ghc.mk b/rts/ghc.mk
index 10e6cd5288..401fe21eec 100644
--- a/rts/ghc.mk
+++ b/rts/ghc.mk
@@ -5,8 +5,8 @@
# This file is part of the GHC build system.
#
# To understand how the build system works and how to modify it, see
-# http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
-# http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
+# http://ghc.haskell.org/trac/ghc/wiki/Building/Architecture
+# http://ghc.haskell.org/trac/ghc/wiki/Building/Modifying
#
# -----------------------------------------------------------------------------
@@ -416,7 +416,7 @@ rts/win32/ThrIOManager_CC_OPTS += -w
# The above warning supression flags are a temporary kludge.
# While working on this module you are encouraged to remove it and fix
# any warnings in the module. See
-# http://hackage.haskell.org/trac/ghc/wiki/WorkingConventions#Warnings
+# http://ghc.haskell.org/trac/ghc/wiki/WorkingConventions#Warnings
# for details
# Without this, thread_obj will not be inlined (at least on x86 with GCC 4.1.0)
diff --git a/rts/sm/Compact.c b/rts/sm/Compact.c
index 375aeea2f2..e9973d3f8a 100644
--- a/rts/sm/Compact.c
+++ b/rts/sm/Compact.c
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/Compact.h b/rts/sm/Compact.h
index 0dce3d0cb6..1ec915f49a 100644
--- a/rts/sm/Compact.h
+++ b/rts/sm/Compact.h
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/Evac.c b/rts/sm/Evac.c
index 35d849e005..223e2f32fa 100644
--- a/rts/sm/Evac.c
+++ b/rts/sm/Evac.c
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/Evac.h b/rts/sm/Evac.h
index cea2be63ae..62d54eb7b9 100644
--- a/rts/sm/Evac.h
+++ b/rts/sm/Evac.h
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/GC.c b/rts/sm/GC.c
index 6fd3b1b1c9..26a1764c20 100644
--- a/rts/sm/GC.c
+++ b/rts/sm/GC.c
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/GC.h b/rts/sm/GC.h
index 54b7c86367..571aa07110 100644
--- a/rts/sm/GC.h
+++ b/rts/sm/GC.h
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/GCTDecl.h b/rts/sm/GCTDecl.h
index 6eb6cc2e8b..2c08e10783 100644
--- a/rts/sm/GCTDecl.h
+++ b/rts/sm/GCTDecl.h
@@ -5,7 +5,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/GCThread.h b/rts/sm/GCThread.h
index be7bfbbb04..4b96fec7f8 100644
--- a/rts/sm/GCThread.h
+++ b/rts/sm/GCThread.h
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/GCUtils.c b/rts/sm/GCUtils.c
index d8633f98ea..11345e92c8 100644
--- a/rts/sm/GCUtils.c
+++ b/rts/sm/GCUtils.c
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/GCUtils.h b/rts/sm/GCUtils.h
index d47375d946..1d217adbdd 100644
--- a/rts/sm/GCUtils.h
+++ b/rts/sm/GCUtils.h
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* --------------------------------------------------------------------------*/
diff --git a/rts/sm/MarkStack.h b/rts/sm/MarkStack.h
index e2319a544d..f978a32563 100644
--- a/rts/sm/MarkStack.h
+++ b/rts/sm/MarkStack.h
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/MarkWeak.c b/rts/sm/MarkWeak.c
index f0ab5d19d7..4e0c1369a1 100644
--- a/rts/sm/MarkWeak.c
+++ b/rts/sm/MarkWeak.c
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/MarkWeak.h b/rts/sm/MarkWeak.h
index 64ccb0f027..f9bacfa0da 100644
--- a/rts/sm/MarkWeak.h
+++ b/rts/sm/MarkWeak.h
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/Scav.c b/rts/sm/Scav.c
index e0cc688b95..fcdda1c7c7 100644
--- a/rts/sm/Scav.c
+++ b/rts/sm/Scav.c
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/Scav.h b/rts/sm/Scav.h
index 699e48cbac..725d27ccf1 100644
--- a/rts/sm/Scav.h
+++ b/rts/sm/Scav.h
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/Storage.c b/rts/sm/Storage.c
index b6c4c3dab6..db834e6279 100644
--- a/rts/sm/Storage.c
+++ b/rts/sm/Storage.c
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Storage Manager can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/Sweep.c b/rts/sm/Sweep.c
index cc619314e4..c927f300d7 100644
--- a/rts/sm/Sweep.c
+++ b/rts/sm/Sweep.c
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
diff --git a/rts/sm/Sweep.h b/rts/sm/Sweep.h
index 4eacd11eef..b590faa803 100644
--- a/rts/sm/Sweep.h
+++ b/rts/sm/Sweep.h
@@ -7,7 +7,7 @@
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
- * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
+ * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/