diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2006-01-31 18:08:39 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2006-01-31 18:08:39 +0000 |
| commit | ccd3e0fcf829215f63129caa865c7bf4ffb889aa (patch) | |
| tree | 4249f22a018f4b1e6d402f78ec3f6d552baa1564 | |
| parent | b88c6e8756f197c16394dc59be956ba5133dbc6e (diff) | |
Notes
| -rw-r--r-- | sys/sys/_rwlock.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/sys/_rwlock.h b/sys/sys/_rwlock.h index 1333371c36ff..79fb609c442b 100644 --- a/sys/sys/_rwlock.h +++ b/sys/sys/_rwlock.h @@ -1,5 +1,6 @@ /*- * Copyright (c) 2006 John Baldwin <jhb@FreeBSD.org> + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -9,11 +10,14 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the author nor the names of any co-contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. * - * THIS SOFTWARE IS PROVIDED BY BERKELEY SOFTWARE DESIGN INC ``AS IS'' AND + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL BERKELEY SOFTWARE DESIGN INC BE LIABLE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) @@ -29,7 +33,7 @@ #define _SYS__RWLOCK_H_ /* - * Reader/writer mutex. + * Reader/writer lock. */ struct rwlock { struct lock_object rw_object; |
