diff options
author | Edward Z. Yang <ezyang@mit.edu> | 2013-10-21 12:59:35 -0700 |
---|---|---|
committer | Edward Z. Yang <ezyang@mit.edu> | 2013-10-21 12:59:35 -0700 |
commit | 3fb19a913f7bf79bd7895c85c750b98308ddb1cf (patch) | |
tree | 2b3812efa9a5de2526f646d31289e830841c951b /rts | |
parent | d4f7e011481084e8e99ac3490e9e8bace5da1a84 (diff) | |
download | haskell-3fb19a913f7bf79bd7895c85c750b98308ddb1cf.tar.gz |
s/excpetions/exceptions/
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
Diffstat (limited to 'rts')
-rw-r--r-- | rts/Exception.cmm | 2 | ||||
-rw-r--r-- | rts/RaiseAsync.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rts/Exception.cmm b/rts/Exception.cmm index 2e18a7aa42..e2fc5543bf 100644 --- a/rts/Exception.cmm +++ b/rts/Exception.cmm @@ -577,7 +577,7 @@ retry_pop_stack: Sp(0) = stg_unmaskAsyncExceptionszh_ret_info; } - /* Ensure that async excpetions are blocked when running the handler. + /* Ensure that async exceptions are blocked when running the handler. */ StgTSO_flags(CurrentTSO) = %lobits32( TO_W_(StgTSO_flags(CurrentTSO)) | TSO_BLOCKEX | TSO_INTERRUPTIBLE); diff --git a/rts/RaiseAsync.c b/rts/RaiseAsync.c index 86a16d3e08..a5440e40ad 100644 --- a/rts/RaiseAsync.c +++ b/rts/RaiseAsync.c @@ -923,7 +923,7 @@ raiseAsync(Capability *cap, StgTSO *tso, StgClosure *exception, // sp = frame - 1; - /* Ensure that async excpetions are blocked now, so we don't get + /* Ensure that async exceptions are blocked now, so we don't get * a surprise exception before we get around to executing the * handler. */ |