summaryrefslogtreecommitdiff
path: root/lib/libpthread
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2012-06-15 19:20:44 +0000
committerjoerg <joerg@NetBSD.org>2012-06-15 19:20:44 +0000
commitcaa831563281a9d07d0f0e4fd3ffbbac2dba4850 (patch)
treed79033e73f499b604b01e71a66aaa37dcfbe5a5c /lib/libpthread
parentdea99325c7c01c8b14bbecaaa79dee0e374f03f6 (diff)
Do not mark pthread_cond_timedwait explicitly as inlineable, since it
calls pthread__self, which is static.
Diffstat (limited to 'lib/libpthread')
-rw-r--r--lib/libpthread/pthread_cond.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/pthread_cond.c b/lib/libpthread/pthread_cond.c
index f4c65b55e75..896890374f8 100644
--- a/lib/libpthread/pthread_cond.c
+++ b/lib/libpthread/pthread_cond.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_cond.c,v 1.56 2010/11/02 20:49:47 skrll Exp $ */
+/* $NetBSD: pthread_cond.c,v 1.57 2012/06/15 19:20:44 joerg Exp $ */
/*-
* Copyright (c) 2001, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -46,7 +46,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread_cond.c,v 1.56 2010/11/02 20:49:47 skrll Exp $");
+__RCSID("$NetBSD: pthread_cond.c,v 1.57 2012/06/15 19:20:44 joerg Exp $");
#include <errno.h>
#include <sys/time.h>
@@ -103,7 +103,7 @@ pthread_cond_destroy(pthread_cond_t *cond)
return 0;
}
-inline int
+int
pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
const struct timespec *abstime)
{