Rename hinfo -> dtable. Name the former dtable array 'fdtab'.

This commit is contained in:
Christopher Faylor
2000-08-12 04:48:44 +00:00
parent 86bf05d540
commit 9015e0fb8c
22 changed files with 183 additions and 179 deletions

View File

@ -559,7 +559,7 @@ fork ()
MALLOC_CHECK;
dtable.fixup_after_fork (hParent);
fdtab.fixup_after_fork (hParent);
signal_fixup_after_fork ();
exec_fixup_after_fork ();
@ -654,10 +654,10 @@ vfork ()
for (pp = (char **)vf->frame, esp = vf->vfork_esp;
esp <= vf->vfork_ebp + 1; pp++, esp++)
*pp = *esp;
return dtable.vfork_child_dup () ? 0 : -1;
return fdtab.vfork_child_dup () ? 0 : -1;
}
dtable.vfork_parent_restore ();
fdtab.vfork_parent_restore ();
vf = get_vfork_val ();
if (vf->pid < 0)