* cadillac.c (kernel_dispatch): Make return type void.
authorFred Fish <fnf@specifix.com>
Wed, 24 Jun 1992 05:52:01 +0000 (05:52 +0000)
committerFred Fish <fnf@specifix.com>
Wed, 24 Jun 1992 05:52:01 +0000 (05:52 +0000)
* cadillac.c (iosig):  Signal handlers take one int arg.

gdb/ChangeLog
gdb/cadillac.c

index 517543476bf6892c4ecbcb61cd016a63f8c958e3..4a4ddda6a9a835df185e00414860236fc3d48709 100644 (file)
@@ -22,6 +22,8 @@ Tue Jun 23 21:46:26 1992  Fred Fish  (fnf@cygnus.com)
        * sparc-xdep.c, a68v-xdep.c (fetch_inferior_registers,
        store_inferior_registers): Supply missing fourth argument to
        ptrace().
+       * cadillac.c (kernel_dispatch):  Make return type void.
+       * cadillac.c (iosig):  Signal handlers take one int arg.
 
 Mon Jun 22 20:18:06 1992  Fred Fish  (fnf@cygnus.com)
 
index 9bf824f2b7dfe9901d78014f7691587cbda65c11..ef9e1e8445b042ce5b25de1cf65625cc46233083 100755 (executable)
@@ -814,7 +814,7 @@ getpty()
 \f
 /* Examine a protocol packet from the driver. */
 
-static int
+static void
 kernel_dispatch(queue)
      int queue;                        /* Non-zero means we should just queue up
                                   commands. */
@@ -1386,7 +1386,8 @@ cadillac_new_process()
 }
 
 static void
-iosig()
+iosig(signo)
+     int signo;
 {
   while (1)
     {
This page took 0.026932 seconds and 4 git commands to generate.