[project @ 2005-03-10 14:03:28 by simonmar]
[ghc-hetmet.git] / ghc / rts / hooks / InitEachPE.c
index 9b3af69..cc9cdc0 100644 (file)
@@ -1,5 +1,4 @@
 /* -----------------------------------------------------------------------------
- * $Id: InitEachPE.c,v 1.2 1998/12/02 13:29:12 simonm Exp $
  *
  * User-overridable RTS hooks.
  *
@@ -9,17 +8,16 @@
 
 #ifdef PAR
 void
-initEachPEHook (void)
-{ /* in a GUM setup this is called on each
-     PE immediately before SynchroniseSystem
-     it can be used to read in static data 
+InitEachPEHook (void)
+{ /* In a GUM setup this is called on each
+     PE immediately before SynchroniseSystem.
+     It can be used to read in static data 
      to each PE which has to be available to
-     each PE
-
-     This version is the one specialised 
-     for Lolita, calling the LoadAllData stuff.
-     The default version probably should do 
-     nothing -- HWL
+     each PE. See GPH-Maple as an example how to
+     use this in combination with foreign language
+     code:
+       http://www.risc.uni-linz.ac.at/software/ghc-maple/
+     -- HWL
   */
 }
 #endif