diff options
author | Simon Marlow <marlowsd@gmail.com> | 2010-03-29 14:46:13 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2010-03-29 14:46:13 +0000 |
commit | 848797ebb9b60cf9c8a004c97afd008f5325c75f (patch) | |
tree | 155a9fc6a4495d06694cc4956dc4461179fe5d7c /includes | |
parent | 1373cd3085b8dec456e6118c58e940718cb9d559 (diff) | |
download | haskell-848797ebb9b60cf9c8a004c97afd008f5325c75f.tar.gz |
change throwTo to use tryWakeupThread rather than unblockOne
Diffstat (limited to 'includes')
-rw-r--r-- | includes/stg/MiscClosures.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/stg/MiscClosures.h b/includes/stg/MiscClosures.h index 9834c4bbf3..4e5667b32c 100644 --- a/includes/stg/MiscClosures.h +++ b/includes/stg/MiscClosures.h @@ -120,6 +120,7 @@ RTS_INFO(stg_MSG_WAKEUP_info); RTS_INFO(stg_MSG_TRY_WAKEUP_info); RTS_INFO(stg_MSG_THROWTO_info); RTS_INFO(stg_MSG_BLACKHOLE_info); +RTS_INFO(stg_MSG_NULL_info); RTS_INFO(stg_MUT_CONS_info); RTS_INFO(stg_catch_info); RTS_INFO(stg_PAP_info); @@ -171,6 +172,7 @@ RTS_ENTRY(stg_MSG_WAKEUP_entry); RTS_ENTRY(stg_MSG_TRY_WAKEUP_entry); RTS_ENTRY(stg_MSG_THROWTO_entry); RTS_ENTRY(stg_MSG_BLACKHOLE_entry); +RTS_ENTRY(stg_MSG_NULL_entry); RTS_ENTRY(stg_MUT_CONS_entry); RTS_ENTRY(stg_catch_entry); RTS_ENTRY(stg_PAP_entry); |