Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Shayne Fletcher
Glasgow Haskell Compiler
Commits
6bbe864b
Commit
6bbe864b
authored
Nov 04, 2008
by
Simon Marlow
Browse files
bugfix: don't ingore the return value from rts_evalIO()
parent
816b587f
Changes
1
Hide whitespace changes
Inline
Side-by-side
rts/posix/Signals.c
View file @
6bbe864b
...
...
@@ -148,7 +148,7 @@ ioManagerStart (void)
Capability
*
cap
;
if
(
io_manager_pipe
<
0
)
{
cap
=
rts_lock
();
rts_evalIO
(
cap
,
&
base_GHCziConc_ensureIOManagerIsRunning_closure
,
NULL
);
cap
=
rts_evalIO
(
cap
,
&
base_GHCziConc_ensureIOManagerIsRunning_closure
,
NULL
);
rts_unlock
(
cap
);
}
}
...
...
Write
Preview
Supports
Markdown
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