diff options
author | tuexen <tuexen@FreeBSD.org> | 2012-05-23 11:26:28 +0000 |
---|---|---|
committer | tuexen <tuexen@FreeBSD.org> | 2012-05-23 11:26:28 +0000 |
commit | 25827ad38231373971b6f50b964c0996497ad3b3 (patch) | |
tree | 9c8148ab77bdffafeaeac4f92d5ed4c05a957f26 /sys/netinet/sctp_lock_bsd.h | |
parent | eabfe486a67f3292927ea0594d014f6d6337ad49 (diff) | |
download | FreeBSD-src-25827ad38231373971b6f50b964c0996497ad3b3.zip FreeBSD-src-25827ad38231373971b6f50b964c0996497ad3b3.tar.gz |
Use consistent text at the begining of the files.
MFC after: 3 days
Diffstat (limited to 'sys/netinet/sctp_lock_bsd.h')
-rw-r--r-- | sys/netinet/sctp_lock_bsd.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sys/netinet/sctp_lock_bsd.h b/sys/netinet/sctp_lock_bsd.h index fcdcf4a..35cdf5f 100644 --- a/sys/netinet/sctp_lock_bsd.h +++ b/sys/netinet/sctp_lock_bsd.h @@ -1,9 +1,7 @@ -#ifndef __sctp_lock_bsd_h__ -#define __sctp_lock_bsd_h__ /*- * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved. - * Copyright (c) 2008-2011, by Randall Stewart. All rights reserved. - * Copyright (c) 2008-2011, by Michael Tuexen. All rights reserved. + * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. + * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -32,6 +30,12 @@ * THE POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + +#ifndef _NETINET_SCTP_LOCK_BSD_H_ +#define _NETINET_SCTP_LOCK_BSD_H_ + /* * General locking concepts: The goal of our locking is to of course provide * consistency and yet minimize overhead. We will attempt to use @@ -70,9 +74,6 @@ * SCTP_INP_INFO_RLOCK() and then when we want to add a new association to * the SCTP_BASE_INFO() list's we will do a SCTP_INP_INFO_WLOCK(). */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - extern struct sctp_foo_stuff sctp_logoff[]; extern int sctp_logoff_stuff; |