OSDN Git Service

* fork.cc (fork_child): Add missing __stdcall.
authorcorinna <corinna>
Fri, 1 Apr 2005 16:52:45 +0000 (16:52 +0000)
committercorinna <corinna>
Fri, 1 Apr 2005 16:52:45 +0000 (16:52 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/fork.cc

index 5b0f68d..186dcfe 100644 (file)
@@ -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
index a2473ad..3fb9072 100644 (file)
@@ -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));