diff options
author | Fred Fish <fnf@specifix.com> | 1992-06-24 05:52:01 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-06-24 05:52:01 +0000 |
commit | f54e9fd84f56567255e8e6c04d3aaf4368fd7c4b (patch) | |
tree | c758ee9170268f96646f55623aeea5dae9b0caa6 /gdb/cadillac.c | |
parent | 56e5eadc5713d72fb414176766dbee1dbaddf1ad (diff) | |
download | gdb-f54e9fd84f56567255e8e6c04d3aaf4368fd7c4b.zip gdb-f54e9fd84f56567255e8e6c04d3aaf4368fd7c4b.tar.gz gdb-f54e9fd84f56567255e8e6c04d3aaf4368fd7c4b.tar.bz2 |
* cadillac.c (kernel_dispatch): Make return type void.
* cadillac.c (iosig): Signal handlers take one int arg.
Diffstat (limited to 'gdb/cadillac.c')
-rwxr-xr-x | gdb/cadillac.c | 5 |
1 files changed, 3 insertions, 2 deletions
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) { |