diff options
author | Kurt Miller <kurt@cvs.openbsd.org> | 2007-11-19 02:54:20 +0000 |
---|---|---|
committer | Kurt Miller <kurt@cvs.openbsd.org> | 2007-11-19 02:54:20 +0000 |
commit | 2385131e4d5efd8d6a9992a4d7036ed2601b8b5b (patch) | |
tree | e702a2d16da9dc933c90e1b80ec39cde931f6f17 /lib/libc/include | |
parent | 50a4eb3dbc30703b8ba5c818d3d044d91c618518 (diff) |
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 { \ |