diff options
author | 2007-11-19 02:54:19 +0000 | |
---|---|---|
committer | 2007-11-19 02:54:19 +0000 | |
commit | 162c5557a2a54c1ba7573ed47d99f63de325c1c1 (patch) | |
tree | 83a36ce0af746e96f3ae9f3c2da5f98986a15f6d /lib/libc/include | |
parent | When ignoring whether FR turns on or not, we should still set FRE, (diff) | |
download | wireguard-openbsd-162c5557a2a54c1ba7573ed47d99f63de325c1c1.tar.xz wireguard-openbsd-162c5557a2a54c1ba7573ed47d99f63de325c1c1.zip |
fix misleading comment; the _MUTEX_LOCK/_MUTEX_UNLOCK macros work with
both static and non-static mutexs.
Diffstat (limited to 'lib/libc/include')
-rw-r--r-- | lib/libc/include/thread_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/include/thread_private.h b/lib/libc/include/thread_private.h index a365c25e66a..146f0b0a015 100644 --- a/lib/libc/include/thread_private.h +++ b/lib/libc/include/thread_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: thread_private.h,v 1.20 2007/06/05 18:11:48 kurt Exp $ */ +/* $OpenBSD: thread_private.h,v 1.21 2007/11/19 02:54:19 kurt Exp $ */ /* PUBLIC DOMAIN: No Rights Reserved. Marco S Hyman <marc@snafu.org> */ @@ -93,7 +93,7 @@ void _thread_mutex_destroy(void **); sizeof (storage), error) /* - * Macros used in libc to access non-static mutexes. + * Macros used in libc to access mutexes. */ #define _MUTEX_LOCK(mutex) \ do { \ |