diff options
author | Spencer Janssen <spencer@well-typed.com> | 2011-04-14 01:11:05 -0500 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2011-05-18 11:14:27 +0100 |
commit | 58532eb46041aec8d4cbb48b054cb5b001edb43c (patch) | |
tree | 1fd878273e11b04045e48178acc8eaacd2ccace9 /rts/RtsStartup.c | |
parent | 58339b06aff704834e8553faaa2db00d746b26f3 (diff) | |
download | haskell-58532eb46041aec8d4cbb48b054cb5b001edb43c.tar.gz |
Add capability sets to the event system. Contains code from Duncan Coutts.
Diffstat (limited to 'rts/RtsStartup.c')
-rw-r--r-- | rts/RtsStartup.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rts/RtsStartup.c b/rts/RtsStartup.c index 236d07a9e0..502906ebed 100644 --- a/rts/RtsStartup.c +++ b/rts/RtsStartup.c @@ -148,6 +148,10 @@ hs_init(int *argc, char **argv[]) */ dtraceEventStartup(); + /* Trace some basic information about the process + */ + traceCapsetDetails(argc, argv); + /* initialise scheduler data structures (needs to be done before * initStorage()). */ |