diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 2002-11-12 20:12:46 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 2002-11-12 20:12:46 +0000 |
commit | b20c0b1d969bff5c5467d89843b2191e898343e2 (patch) | |
tree | cab28954008fe19f088ef2e393c8e0ed7d54c8fd /lib/libpthread/uthread/pthread_private.h | |
parent | e0230372e5261e72b6c7e3219309646683f8a05d (diff) |
get rid of compiler warnings
Diffstat (limited to 'lib/libpthread/uthread/pthread_private.h')
-rw-r--r-- | lib/libpthread/uthread/pthread_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h index 9f64f0328e7..749c4e05791 100644 --- a/lib/libpthread/uthread/pthread_private.h +++ b/lib/libpthread/uthread/pthread_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pthread_private.h,v 1.37 2002/10/30 20:05:11 marc Exp $ */ +/* $OpenBSD: pthread_private.h,v 1.38 2002/11/12 20:12:45 marc Exp $ */ /* * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>. * All rights reserved. @@ -1087,9 +1087,9 @@ void _pq_remove(struct pq_queue *pq, struct pthread *); void _pq_insert_head(struct pq_queue *pq, struct pthread *); void _pq_insert_tail(struct pq_queue *pq, struct pthread *); struct pthread *_pq_first(struct pq_queue *pq); -#if defined(_PTHREADS_INVARIANTS) void _waitq_insert(pthread_t pthread); void _waitq_remove(pthread_t pthread); +#if defined(_PTHREADS_INVARIANTS) void _waitq_setactive(void); void _waitq_clearactive(void); #endif |