s/lwp/l/ for argument name in pmap_deactivate.
This commit is contained in:
skrll 2007-04-07 09:02:07 +00:00
parent 693a79edd7
commit 406c4f0d55
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.h,v 1.11 2006/02/16 20:17:13 perry Exp $ */
/* $NetBSD: pmap.h,v 1.12 2007/04/07 09:02:07 skrll Exp $ */
/* $OpenBSD: pmap.h,v 1.14 2001/05/09 15:31:24 art Exp $ */
@ -132,10 +132,10 @@ do { if (pmap) { \
#define pmap_release(pmap)
#define pmap_copy(dpmap,spmap,da,len,sa)
#define pmap_update(p)
void pmap_activate __P((struct lwp *));
void pmap_activate(struct lwp *);
static __inline void
pmap_deactivate(struct lwp *lwp)
pmap_deactivate(struct lwp *l)
{
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: profile.h,v 1.6 2006/02/16 20:17:13 perry Exp $ */
/* $NetBSD: profile.h,v 1.7 2007/04/07 09:02:07 skrll Exp $ */
/* $OpenBSD: profile.h,v 1.1 1998/12/05 17:25:55 mickey Exp $ */
@ -36,7 +36,7 @@
#define _MCOUNT_DECL static __inline void _mcount
#define MCOUNT \
extern void mcount __P((void)) __asm("mcount"); \
extern void mcount(void) __asm("mcount"); \
void \
mcount() \
{ \