Remove ifdef LOCKDEBUG, this file is only compiled when it is defined.

This commit is contained in:
fvdl 2002-10-07 07:58:26 +00:00
parent 288a0ddc5d
commit 570d69db6e
1 changed files with 1 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: lock_machdep.c,v 1.2 2002/10/01 12:56:54 fvdl Exp $ */
/* $NetBSD: lock_machdep.c,v 1.3 2002/10/07 07:58:26 fvdl Exp $ */
/*-
* Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
@ -54,8 +54,6 @@
#include <ddb/db_output.h>
#ifdef LOCKDEBUG
void
__cpu_simple_lock_init(lockp)
__cpu_simple_lock_t *lockp;
@ -143,5 +141,3 @@ __cpu_simple_unlock(lockp)
__lockbarrier();
*lockp = __SIMPLELOCK_UNLOCKED;
}
#endif