- fdopen -> filedescopen

- bring kgdb prototype in scope.
This commit is contained in:
christos 1996-03-14 19:01:08 +00:00
parent 84cc73f734
commit e79beaff89
3 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_conf.h,v 1.1 1996/02/04 02:19:27 christos Exp $ */
/* $NetBSD: kern_conf.h,v 1.2 1996/03/14 19:01:08 christos Exp $ */
/*
* Copyright (c) 1995 Christos Zoulas. All rights reserved.
@ -31,7 +31,7 @@
#include <sys/conf.h>
cdev_decl(fdesc);
cdev_decl(filedesc);
cdev_decl(log);

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_descrip.c,v 1.39 1996/02/09 18:59:26 christos Exp $ */
/* $NetBSD: kern_descrip.c,v 1.40 1996/03/14 19:01:10 christos Exp $ */
/*
* Copyright (c) 1982, 1986, 1989, 1991, 1993
@ -818,7 +818,7 @@ sys_flock(p, v, retval)
*/
/* ARGSUSED */
int
fdopen(dev, mode, type, p)
filedescopen(dev, mode, type, p)
dev_t dev;
int mode, type;
struct proc *p;

View File

@ -1,4 +1,4 @@
/* $NetBSD: subr_prf.c,v 1.21 1996/02/09 19:00:01 christos Exp $ */
/* $NetBSD: subr_prf.c,v 1.22 1996/03/14 19:01:11 christos Exp $ */
/*-
* Copyright (c) 1986, 1988, 1991, 1993
@ -66,6 +66,9 @@
#ifdef KADB
#include <machine/kdbparam.h>
#endif
#ifdef KGDB
#include <machine/cpu.h>
#endif
#define TOCONS 0x01
#define TOTTY 0x02