* remote-vx.c: Rename pid parameter to pid_to_wait_for. Some
compilers (legitimately) don't like variables in the function's outermost block whose name is the name as a parameter.
This commit is contained in:
parent
2d62828161
commit
c3cabecb47
2 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
||||||
Fri Oct 22 07:49:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
Fri Oct 22 07:49:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
|
* remote-vx.c: Rename pid parameter to pid_to_wait_for. Some
|
||||||
|
compilers (legitimately) don't like variables in the function's
|
||||||
|
outermost block whose name is the name as a parameter.
|
||||||
|
|
||||||
Merge Apollo patches from Troy Rollo (troy@cbme.unsw.edu.au):
|
Merge Apollo patches from Troy Rollo (troy@cbme.unsw.edu.au):
|
||||||
* dst.h, dstread.c, config/m68k/{apollo68b.mt,tm-apollo68b.h}:
|
* dst.h, dstread.c, config/m68k/{apollo68b.mt,tm-apollo68b.h}:
|
||||||
New files.
|
New files.
|
||||||
|
|
|
@ -858,8 +858,8 @@ sleep_ms (ms)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static int
|
static int
|
||||||
vx_wait (pid, status)
|
vx_wait (pid_to_wait_for, status)
|
||||||
int pid;
|
int pid_to_wait_for;
|
||||||
int *status;
|
int *status;
|
||||||
{
|
{
|
||||||
register int pid;
|
register int pid;
|
||||||
|
|
Loading…
Add table
Reference in a new issue