svn commit: r207925 - head/sys/sys

Attilio Rao attilio at FreeBSD.org
Tue May 11 17:03:49 UTC 2010


Author: attilio
Date: Tue May 11 17:03:48 2010
New Revision: 207925
URL: http://svn.freebsd.org/changeset/base/207925

Log:
  Fix style for witness functions prototypes.
  
  MFC after:	7 days

Modified:
  head/sys/sys/lock.h

Modified: head/sys/sys/lock.h
==============================================================================
--- head/sys/sys/lock.h	Tue May 11 17:02:29 2010	(r207924)
+++ head/sys/sys/lock.h	Tue May 11 17:03:48 2010	(r207925)
@@ -197,7 +197,7 @@ extern struct lock_class lock_class_lock
 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 *, 
 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);


More information about the svn-src-head mailing list