diff options
author | Ian Lynagh <igloo@earth.li> | 2008-06-21 14:45:28 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-06-21 14:45:28 +0000 |
commit | 179a3a7bd67ccc816e3b934eff770fb49c4cc456 (patch) | |
tree | ac5b175be0aac2f14c842dc04f94406209f514fe /rts/package.conf.in | |
parent | 1c7a841f836d3be3e21af98dd7a84079ad1096b3 (diff) | |
download | haskell-179a3a7bd67ccc816e3b934eff770fb49c4cc456.tar.gz |
When raising NonTermination with the RTS, build the right value
We now use a nonTermination value in the base library to take take of
constructing the SomeException value, with the dictionaries etc, for us.
We'll probably need to do the same for some other exceptions too
Diffstat (limited to 'rts/package.conf.in')
-rw-r--r-- | rts/package.conf.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/package.conf.in b/rts/package.conf.in index 557bb99bfb..045ec1f923 100644 --- a/rts/package.conf.in +++ b/rts/package.conf.in @@ -105,7 +105,7 @@ ld-options: , "-u", "_base_GHCziPack_unpackCString_closure" , "-u", "_base_GHCziIOBase_stackOverflow_closure" , "-u", "_base_GHCziIOBase_heapOverflow_closure" - , "-u", "_base_GHCziIOBase_NonTermination_closure" + , "-u", "_base_GHCziIOBase_nonTermination_closure" , "-u", "_base_GHCziIOBase_BlockedOnDeadMVar_closure" , "-u", "_base_GHCziIOBase_BlockedIndefinitely_closure" , "-u", "_base_GHCziIOBase_Deadlock_closure" @@ -139,7 +139,7 @@ ld-options: , "-u", "base_GHCziPack_unpackCString_closure" , "-u", "base_GHCziIOBase_stackOverflow_closure" , "-u", "base_GHCziIOBase_heapOverflow_closure" - , "-u", "base_GHCziIOBase_NonTermination_closure" + , "-u", "base_GHCziIOBase_nonTermination_closure" , "-u", "base_GHCziIOBase_BlockedOnDeadMVar_closure" , "-u", "base_GHCziIOBase_BlockedIndefinitely_closure" , "-u", "base_GHCziIOBase_Deadlock_closure" |