* fork.cc (fork_child): Add missing __stdcall.
This commit is contained in:
parent
46390451a4
commit
31d419c977
|
@ -1,3 +1,7 @@
|
|||
2005-04-01 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fork.cc (fork_child): Add missing __stdcall.
|
||||
|
||||
2005-04-01 Christopher Faylor <cgf@timesys.com>
|
||||
|
||||
* sigproc.cc (create_signal_arrive): New (temporary?) function to
|
||||
|
|
|
@ -156,7 +156,7 @@ fork_child (HANDLE& hParent, dll *&first_dll, bool& load_dlls)
|
|||
{
|
||||
extern void fixup_hooks_after_fork ();
|
||||
extern void fixup_timers_after_fork ();
|
||||
extern void create_signal_arrived ();
|
||||
extern void __stdcall create_signal_arrived ();
|
||||
debug_printf ("child is running. pid %d, ppid %d, stack here %p",
|
||||
myself->pid, myself->ppid, __builtin_frame_address (0));
|
||||
|
||||
|
|
Loading…
Reference in New Issue