Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2014-03-19 00:17:03 +0400
committerChristopher Faylor <me@cgf.cx>2014-03-19 00:17:03 +0400
commit203cd39dfe8ee880fbd48d014d698ac21c67af92 (patch)
treeb8bb6056bb35c2b3b742d8020fa5cffe20a98cb3 /winsup/cygwin/fhandler_dsp.cc
parent8c0389d33013d13b30bbcf5cbc274664127ff5c8 (diff)
* fhandler_dsp.cc (fhandler_dev_dsp::fixup_after_fork): Actually call
_fixup_after_fork rather than looping forever. (fhandler_dev_dsp::fixup_after_exec): Ditto.
Diffstat (limited to 'winsup/cygwin/fhandler_dsp.cc')
-rw-r--r--winsup/cygwin/fhandler_dsp.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_dsp.cc b/winsup/cygwin/fhandler_dsp.cc
index 04b13057a..70e9c1cb4 100644
--- a/winsup/cygwin/fhandler_dsp.cc
+++ b/winsup/cygwin/fhandler_dsp.cc
@@ -1026,13 +1026,13 @@ fhandler_dev_dsp::ioctl (unsigned int cmd, void *)
void
fhandler_dev_dsp::fixup_after_fork (HANDLE parent)
{
- base ()->fixup_after_fork (parent);
+ base ()->_fixup_after_fork (parent);
}
void
fhandler_dev_dsp::fixup_after_exec ()
{
- base ()->fixup_after_exec ();
+ base ()->_fixup_after_exec ();
}