summaryrefslogtreecommitdiff
path: root/rts/Prelude.h
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-08-21 11:06:20 +0000
committerIan Lynagh <igloo@earth.li>2008-08-21 11:06:20 +0000
commitcbc5fb05036f3c1990b2f9f91b9e1c66b97a392f (patch)
tree05162c6799e0cd974eb76e385ddba2a65a6a4166 /rts/Prelude.h
parentf7612a64de7e39a57ec978ab2d567ec5b16cb584 (diff)
downloadhaskell-cbc5fb05036f3c1990b2f9f91b9e1c66b97a392f.tar.gz
Fix references to exceptions from the RTS
We now need to make sure that they have been toException'd. Also, the RTS doesn't know about the Deadlock exception any more.
Diffstat (limited to 'rts/Prelude.h')
-rw-r--r--rts/Prelude.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/rts/Prelude.h b/rts/Prelude.h
index 9b27d2f3d4..6eb1311f0a 100644
--- a/rts/Prelude.h
+++ b/rts/Prelude.h
@@ -37,8 +37,8 @@ extern StgClosure ZCMain_main_closure;
PRELUDE_CLOSURE(base_GHCziIOBase_stackOverflow_closure);
PRELUDE_CLOSURE(base_GHCziIOBase_heapOverflow_closure);
-PRELUDE_CLOSURE(base_GHCziIOBase_BlockedOnDeadMVar_closure);
-PRELUDE_CLOSURE(base_GHCziIOBase_BlockedIndefinitely_closure);
+PRELUDE_CLOSURE(base_GHCziIOBase_blockedOnDeadMVar_closure);
+PRELUDE_CLOSURE(base_GHCziIOBase_blockedIndefinitely_closure);
PRELUDE_CLOSURE(base_ControlziExceptionziBase_nonTermination_closure);
PRELUDE_CLOSURE(base_ControlziExceptionziBase_nestedAtomically_closure);
@@ -87,10 +87,10 @@ PRELUDE_INFO(base_GHCziStable_StablePtr_con_info);
#define stackOverflow_closure DLL_IMPORT_DATA_REF(base_GHCziIOBase_stackOverflow_closure)
#define heapOverflow_closure DLL_IMPORT_DATA_REF(base_GHCziIOBase_heapOverflow_closure)
-#define BlockedOnDeadMVar_closure DLL_IMPORT_DATA_REF(base_GHCziIOBase_BlockedOnDeadMVar_closure)
-#define BlockedIndefinitely_closure DLL_IMPORT_DATA_REF(base_GHCziIOBase_BlockedIndefinitely_closure)
+#define blockedOnDeadMVar_closure DLL_IMPORT_DATA_REF(base_GHCziIOBase_blockedOnDeadMVar_closure)
+#define blockedIndefinitely_closure DLL_IMPORT_DATA_REF(base_GHCziIOBase_blockedIndefinitely_closure)
#define nonTermination_closure DLL_IMPORT_DATA_REF(base_ControlziExceptionziBase_nonTermination_closure)
-#define NestedAtomically_closure DLL_IMPORT_DATA_REF(base_ControlziExceptionziBase_nestedAtomically_closure)
+#define nestedAtomically_closure DLL_IMPORT_DATA_REF(base_ControlziExceptionziBase_nestedAtomically_closure)
#define Czh_static_info DLL_IMPORT_DATA_REF(ghczmprim_GHCziTypes_Czh_static_info)
#define Fzh_static_info DLL_IMPORT_DATA_REF(ghczmprim_GHCziTypes_Fzh_static_info)