summaryrefslogtreecommitdiff
path: root/lib/libpthread
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libpthread')
-rw-r--r--lib/libpthread/pthread_sa.c6
-rw-r--r--lib/libpthread/pthread_tsd.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/libpthread/pthread_sa.c b/lib/libpthread/pthread_sa.c
index 41971888427..091e492790f 100644
--- a/lib/libpthread/pthread_sa.c
+++ b/lib/libpthread/pthread_sa.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_sa.c,v 1.16 2003/09/16 13:51:35 cl Exp $ */
+/* $NetBSD: pthread_sa.c,v 1.17 2003/09/29 09:50:22 wiz Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread_sa.c,v 1.16 2003/09/16 13:51:35 cl Exp $");
+__RCSID("$NetBSD: pthread_sa.c,v 1.17 2003/09/29 09:50:22 wiz Exp $");
#include <err.h>
#include <errno.h>
@@ -705,7 +705,7 @@ pthread__sa_start(void)
if (ret) {
if (errno == ENOSYS)
errx(1,
- "libpthread: SA system calls are not avaliable.\n"
+ "libpthread: SA system calls are not available.\n"
);
err(1, "libpthread: sa_register failed\n");
}
diff --git a/lib/libpthread/pthread_tsd.c b/lib/libpthread/pthread_tsd.c
index 654800d0661..1d459f24c84 100644
--- a/lib/libpthread/pthread_tsd.c
+++ b/lib/libpthread/pthread_tsd.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_tsd.c,v 1.1 2003/08/13 18:52:02 nathanw Exp $ */
+/* $NetBSD: pthread_tsd.c,v 1.2 2003/09/29 09:50:22 wiz Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread_tsd.c,v 1.1 2003/08/13 18:52:02 nathanw Exp $");
+__RCSID("$NetBSD: pthread_tsd.c,v 1.2 2003/09/29 09:50:22 wiz Exp $");
/* Functions and structures dealing with thread-specific data */
#include <errno.h>
@@ -61,7 +61,7 @@ pthread_key_create(pthread_key_t *key, void (*destructor)(void *))
/* Get a lock on the allocation list */
pthread_mutex_lock(&tsd_mutex);
- /* Find an avaliable slot */
+ /* Find an available slot */
/* 1. Search from "nextkey" to the end of the list. */
for (i = nextkey; i < PTHREAD_KEYS_MAX; i++)
if (pthread__tsd_alloc[i] == 0)