name: ghc-events-parallel
version: 0.4.0.0
synopsis: Library and tool for parsing .eventlog files from parallel GHC
description: Parses .eventlog files emitted by parallel GHC versions
(6.12.3 and later). This package can replace the original
ghc-events package and defines a superset of functions
and types.
Includes the ghc-events tool permitting, in particular,
to dump an event log file as text.
category: Development, GHC, Debug, Eden, Profiling, Trace
license: BSD3
license-file: LICENSE
author: Donnie Jones <donnie@darthik.com>,
Simon Marlow <marlowsd@gmail.com>,
Paul Bone <pbone@csse.unimelb.edu.au>,
Mischa Dieterle <dieterle@mathematik.uni-marburg.de>,
Thomas Horstmeyer <horstmey@mathematik.uni-marburg.de>,
Duncan Coutts <duncan@well-typed.com>,
Nicolas Wu <nick@well-typed.com>,
Jost Berthold <berthold@diku.dk>
maintainer: Eden group <eden@mathematik.uni-marburg.de>
bug-reports: to maintainer via mail
build-type: Simple
cabal-version: >= 1.8
extra-source-files: GHC/RTS/EventLogFormat.h,
AUTHORS,
test/*.eventlog
source-repository head
type: darcs
location: http://james.mathematik.uni-marburg.de:8080/darcs/jb/ghc-events-parallel/
library
build-depends: base == 4.*,
mtl >= 1.1 && < 2.1,
containers >= 0.2 && < 0.5,
binary == 0.5.*,
bytestring == 0.9.*,
array >= 0.2 && < 0.5
exposed-modules: GHC.RTS.Events,
GHC.RTS.Events.Merge
GHC.RTS.Events.Analysis
GHC.RTS.Events.Analysis.Capability
GHC.RTS.Events.Analysis.SparkThread
GHC.RTS.Events.Analysis.Thread
other-modules: GHC.RTS.EventParserUtils,
GHC.RTS.EventTypes
extensions: RecordWildCards, NamedFieldPuns, BangPatterns, PatternGuards
executable ghc-events
main-is: GhcEvents.hs
build-depends: base, mtl, containers, binary, bytestring, array
extensions: RecordWildCards, NamedFieldPuns, BangPatterns, PatternGuards
test-suite test-versions
type: exitcode-stdio-1.0
main-is: test/TestVersions.hs
build-depends: base, mtl, containers, binary, bytestring, array