summaryrefslogtreecommitdiff
path: root/lib/libpthread
diff options
context:
space:
mode:
authorad <ad@NetBSD.org>2007-08-07 19:58:30 +0000
committerad <ad@NetBSD.org>2007-08-07 19:58:30 +0000
commit1d42dbd29a70b622c8271bb20b21fc8587df9185 (patch)
tree21c6f4f7370638fd6b817e65fb7b99fafdd69483 /lib/libpthread
parent3c4d6d00f765cfa8f9af5afd4110f0ae9c72867c (diff)
Missed variable rename..
Diffstat (limited to 'lib/libpthread')
-rw-r--r--lib/libpthread/pthread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/pthread.c b/lib/libpthread/pthread.c
index 378a2205684..d7d3dd469a1 100644
--- a/lib/libpthread/pthread.c
+++ b/lib/libpthread/pthread.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread.c,v 1.72 2007/08/07 19:04:21 ad Exp $ */
+/* $NetBSD: pthread.c,v 1.73 2007/08/07 19:58:30 ad Exp $ */
/*-
* Copyright (c) 2001, 2002, 2003, 2006, 2007 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread.c,v 1.72 2007/08/07 19:04:21 ad Exp $");
+__RCSID("$NetBSD: pthread.c,v 1.73 2007/08/07 19:58:30 ad Exp $");
#include <err.h>
#include <errno.h>
@@ -89,7 +89,7 @@ static int pthread__diagassert = DIAGASSERT_ABORT | DIAGASSERT_STDERR;
int pthread__concurrency, pthread__maxconcurrency, pthread__nspins;
int pthread__unpark_max = PTHREAD__UNPARK_MAX;
-int pthread__osrevision;
+int pthread__osrev;
int _sys___sigprocmask14(int, const sigset_t *, sigset_t *);