1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Style; remove argument names from prototype, be consistent with

rest of file.
This has the additional side-effect of removing a C++ reserved keyword
from this file, which prevents the Click Modular Router's FreeBSD
kernel support from building.

Reviewed by:	silence on -current
This commit is contained in:
Bruce M Simpson 2007-02-03 07:49:20 +00:00
parent 1f35d9bfbd
commit 4729603e9a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=166455

View File

@ -217,9 +217,9 @@ extern struct lock_class lock_class_lockmgr;
extern struct lock_class *lock_classes[];
void lock_init(struct lock_object *lock, struct lock_class *class,
const char *name, const char *type, int flags);
void lock_destroy(struct lock_object *lock);
void lock_init(struct lock_object *, struct lock_class *,
const char *, const char *, int);
void lock_destroy(struct lock_object *);
void spinlock_enter(void);
void spinlock_exit(void);
void witness_init(struct lock_object *);