jberthold    2003/01/18 04:44:45 PST
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.0.8
Precedence: bulk
List-Help: <mailto:[EMAIL PROTECTED]?subject=help>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <http://www.haskell.org/mailman/listinfo/cvs-hslibs>,
        <mailto:[EMAIL PROTECTED]?subject=subscribe>
List-Id: fptools/hslibs CVS commit messages <cvs-hslibs.haskell.org>
List-Unsubscribe: <http://www.haskell.org/mailman/listinfo/cvs-hslibs>,
        <mailto:[EMAIL PROTECTED]?subject=unsubscribe>
List-Archive: <http://www.haskell.org/pipermail/cvs-hslibs/>
Date: Sat, 18 Jan 2003 04:44:45 -0800

  Modified files:        (Branch: eden-5-02-3)
    ghc/compiler/main    CmdLineOpts.lhs DriverFlags.hs 
                         DriverPipeline.hs DriverState.hs 
                         SysTools.lhs 
    ghc/compiler/prelude primops.txt.pp 
    ghc/compiler/simplCore SimplCore.lhs 
    ghc/includes         ClosureTypes.h Closures.h PrimOps.h 
                         RtsFlags.h SchedAPI.h Stg.h 
                         StgMiscClosures.h TSO.h Updates.h 
    ghc/lib/std          PrelGHC.hi-boot.pp 
    ghc/mk               version.mk 
    ghc/rts              ClosureFlags.c GC.c Main.c Makefile 
                         PrimOps.hc Printer.c RtsFlags.c Sanity.c 
                         Schedule.c Storage.c Updates.hc 
    ghc/rts/parallel     HLC.h HLComms.c LLC.h LLComms.c 
                         PEOpCodes.h Pack.c ParInit.c Parallel.c 
                         ParallelDebug.c SysMan.c 
    hslibs/concurrent    Makefile 
    mk                   config.mk.in 
  Log:
  Extension of GHC to support EDEN-parallel computations on GHC 5.02.3.
  Recent code packages and information on the language are also available on the web
  (see http://www.mathematik.uni-marburg.de/inf/eden).
  
  The extension lives on an own branch eden-5-02-3 and shares much code with 
gum-5-02-3.
  
  * Compiler Ways for Eden: me, med(development extensions)
  
  * Current version is supposed to work with GHC on Linux (GHCi not supported).
    (Compiles with gcc-2.95.x, not excessively tested, works with "fib-ish" programs)
  
  * Implementation is being extended/debugged at the moment, this is _not_ the final 
version.
  
  Revision  Changes    Path
  1.148.10.1 +3 -0      fptools/ghc/compiler/main/CmdLineOpts.lhs
  1.66.4.8.6.1 +3 -1      fptools/ghc/compiler/main/DriverFlags.hs
  1.106.2.6.6.1 +19 -6     fptools/ghc/compiler/main/DriverPipeline.hs
  1.55.4.4.6.1 +32 -1     fptools/ghc/compiler/main/DriverState.hs
  1.59.2.1.6.1 +14 -0     fptools/ghc/compiler/main/SysTools.lhs
  1.4.4.1.6.1 +79 -1     fptools/ghc/compiler/prelude/primops.txt.pp
  1.96.4.2.6.1 +471 -7    fptools/ghc/compiler/simplCore/SimplCore.lhs
  1.16.16.1 +4 -2      fptools/ghc/includes/ClosureTypes.h
  1.27.8.1  +12 -1     fptools/ghc/includes/Closures.h
  1.82.4.1.6.1 +68 -1     fptools/ghc/includes/PrimOps.h
  1.37.4.1.6.1 +28 -2     fptools/ghc/includes/RtsFlags.h
  1.13.18.1 +19 -1     fptools/ghc/includes/SchedAPI.h
  1.38.8.1  +4 -1      fptools/ghc/includes/Stg.h
  1.39.4.1.6.1 +7 -1      fptools/ghc/includes/StgMiscClosures.h
  1.23.14.1 +31 -1     fptools/ghc/includes/TSO.h
  1.24.6.1.6.1 +19 -4     fptools/ghc/includes/Updates.h
  1.3.10.1  +14 -0     fptools/ghc/lib/std/Attic/PrelGHC.hi-boot.pp
  1.19.4.4.6.1 +1 -1      fptools/ghc/mk/version.mk
  1.11.16.1 +2 -1      fptools/ghc/rts/ClosureFlags.c
  1.121.4.6.4.1.2.1 +126 -1    fptools/ghc/rts/GC.c
  1.30.4.1.6.1 +6 -1      fptools/ghc/rts/Main.c
  1.54.4.1.6.1 +50 -2     fptools/ghc/rts/Makefile
  1.83.4.2.6.1 +94 -3     fptools/ghc/rts/PrimOps.hc
  1.46.4.1.6.1 +35 -23    fptools/ghc/rts/Printer.c
  1.49.4.1.4.1.2.1 +168 -5    fptools/ghc/rts/RtsFlags.c
  1.30.24.1 +14 -1     fptools/ghc/rts/Sanity.c
  1.100.4.7.4.1.2.1 +237 -10   fptools/ghc/rts/Schedule.c
  1.49.4.3.6.1 +35 -1     fptools/ghc/rts/Storage.c
  1.34.4.1.6.1 +4 -1      fptools/ghc/rts/Updates.hc
  1.3.28.1  +19 -1     fptools/ghc/rts/parallel/HLC.h
  1.6.20.1.2.1 +791 -3    fptools/ghc/rts/parallel/HLComms.c
  1.4.28.1  +158 -4    fptools/ghc/rts/parallel/LLC.h
  1.5.26.1  +998 -48   fptools/ghc/rts/parallel/LLComms.c
  1.4.28.1  +10 -3     fptools/ghc/rts/parallel/PEOpCodes.h
  1.8.26.1  +583 -80   fptools/ghc/rts/parallel/Pack.c
  1.5.20.1.2.1 +110 -12   fptools/ghc/rts/parallel/ParInit.c
  1.5.26.1  +4 -1      fptools/ghc/rts/parallel/Parallel.c
  1.6.16.1  +13 -11    fptools/ghc/rts/parallel/ParallelDebug.c
  1.5.26.1  +76 -12    fptools/ghc/rts/parallel/SysMan.c
  1.10.6.1.2.1 +4 -1      fptools/hslibs/concurrent/Makefile
  1.217.2.1.2.1 +9 -1      fptools/mk/config.mk.in
_______________________________________________
Cvs-hslibs mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/cvs-hslibs

Reply via email to