* 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.
This commit is contained in:
parent
8c0389d330
commit
203cd39dfe
|
@ -1,3 +1,9 @@
|
||||||
|
2014-03-18 Christopher Faylor <me.cygwin2014@cgf.cx>
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
2014-03-18 Corinna Vinschen <corinna@vinschen.de>
|
2014-03-18 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
Partially revert patch from 2014-03-04.
|
Partially revert patch from 2014-03-04.
|
||||||
|
|
|
@ -1026,13 +1026,13 @@ fhandler_dev_dsp::ioctl (unsigned int cmd, void *)
|
||||||
void
|
void
|
||||||
fhandler_dev_dsp::fixup_after_fork (HANDLE parent)
|
fhandler_dev_dsp::fixup_after_fork (HANDLE parent)
|
||||||
{
|
{
|
||||||
base ()->fixup_after_fork (parent);
|
base ()->_fixup_after_fork (parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
fhandler_dev_dsp::fixup_after_exec ()
|
fhandler_dev_dsp::fixup_after_exec ()
|
||||||
{
|
{
|
||||||
base ()->fixup_after_exec ();
|
base ()->_fixup_after_exec ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue