diff options
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rwxr-xr-x | gdb/cadillac.c | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5175434..4a4ddda 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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) diff --git a/gdb/cadillac.c b/gdb/cadillac.c index 9bf824f..ef9e1e8 100755 --- a/gdb/cadillac.c +++ b/gdb/cadillac.c @@ -814,7 +814,7 @@ getpty() /* 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) { |