aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/lock.h
diff options
context:
space:
mode:
authorAttilio Rao <attilio@FreeBSD.org>2010-05-11 17:03:48 +0000
committerAttilio Rao <attilio@FreeBSD.org>2010-05-11 17:03:48 +0000
commita0c124f0c55702273edb27fcadb8b1928ddf17b6 (patch)
treee67d06d7487d953c07882a5a5b25af977efd3b27 /sys/sys/lock.h
parent88a7eb29d2d925a858b5075856052d0368f41e16 (diff)
downloadsrc-a0c124f0c55702273edb27fcadb8b1928ddf17b6.tar.gz
src-a0c124f0c55702273edb27fcadb8b1928ddf17b6.zip
Fix style for witness functions prototypes.
MFC after: 7 days
Notes
Notes: svn path=/head/; revision=207925
Diffstat (limited to 'sys/sys/lock.h')
-rw-r--r--sys/sys/lock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/lock.h b/sys/sys/lock.h
index 01c70ffc66cc..066f4d4891b5 100644
--- a/sys/sys/lock.h
+++ b/sys/sys/lock.h
@@ -197,7 +197,7 @@ extern struct lock_class lock_class_lockmgr;
extern struct lock_class *lock_classes[];
void lock_init(struct lock_object *, struct lock_class *,
- const char *, const char *, int);
+ const char *, const char *, int);
void lock_destroy(struct lock_object *);
void spinlock_enter(void);
void spinlock_exit(void);
@@ -205,7 +205,7 @@ void witness_init(struct lock_object *, const char *);
void witness_destroy(struct lock_object *);
int witness_defineorder(struct lock_object *, struct lock_object *);
void witness_checkorder(struct lock_object *, int, const char *, int,
- struct lock_object *);
+ struct lock_object *);
void witness_lock(struct lock_object *, int, const char *, int);
void witness_upgrade(struct lock_object *, int, const char *, int);
void witness_downgrade(struct lock_object *, int, const char *, int);