mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 18:39:34 +08:00
* cadillac.c (kernel_dispatch): Make return type void.
* cadillac.c (iosig): Signal handlers take one int arg.
This commit is contained in:
@ -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,
|
* sparc-xdep.c, a68v-xdep.c (fetch_inferior_registers,
|
||||||
store_inferior_registers): Supply missing fourth argument to
|
store_inferior_registers): Supply missing fourth argument to
|
||||||
ptrace().
|
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)
|
Mon Jun 22 20:18:06 1992 Fred Fish (fnf@cygnus.com)
|
||||||
|
|
||||||
|
@ -814,7 +814,7 @@ getpty()
|
|||||||
|
|
||||||
/* Examine a protocol packet from the driver. */
|
/* Examine a protocol packet from the driver. */
|
||||||
|
|
||||||
static int
|
static void
|
||||||
kernel_dispatch(queue)
|
kernel_dispatch(queue)
|
||||||
int queue; /* Non-zero means we should just queue up
|
int queue; /* Non-zero means we should just queue up
|
||||||
commands. */
|
commands. */
|
||||||
@ -1386,7 +1386,8 @@ cadillac_new_process()
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
iosig()
|
iosig(signo)
|
||||||
|
int signo;
|
||||||
{
|
{
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user