Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
da9cbce9
Commit
da9cbce9
authored
Jun 10, 2009
by
Simon Marlow
Browse files
don't check for stack underflow if we just had an overflow
parent
340fb6fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
rts/Schedule.c
View file @
da9cbce9
...
@@ -584,7 +584,9 @@ run_thread:
...
@@ -584,7 +584,9 @@ run_thread:
schedulePostRunThread
(
cap
,
t
);
schedulePostRunThread
(
cap
,
t
);
t
=
threadStackUnderflow
(
task
,
t
);
if
(
ret
!=
StackOverflow
)
{
t
=
threadStackUnderflow
(
task
,
t
);
}
ready_to_gc
=
rtsFalse
;
ready_to_gc
=
rtsFalse
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment