Fix cpu_coredump().
This commit is contained in:
parent
b1c756dc7b
commit
e3c66a5dde
|
@ -37,7 +37,7 @@
|
||||||
*
|
*
|
||||||
* from: Utah Hdr: vm_machdep.c 1.21 91/04/06
|
* from: Utah Hdr: vm_machdep.c 1.21 91/04/06
|
||||||
* from: @(#)vm_machdep.c 7.10 (Berkeley) 5/7/91
|
* from: @(#)vm_machdep.c 7.10 (Berkeley) 5/7/91
|
||||||
* $Id: vm_machdep.c,v 1.9 1994/05/19 09:03:22 mycroft Exp $
|
* $Id: vm_machdep.c,v 1.10 1994/05/20 07:21:31 mycroft Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
|
@ -125,8 +125,10 @@ cpu_exit(p)
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
cpu_coredump(p)
|
cpu_coredump(p, vp, cred)
|
||||||
struct proc *p;
|
struct proc *p;
|
||||||
|
struct vnode *vp;
|
||||||
|
struct ucred *cred;
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifdef COMPAT_HPUX
|
#ifdef COMPAT_HPUX
|
||||||
|
|
Loading…
Reference in New Issue