diff options
author | 2002-12-08 04:06:01 +0000 | |
---|---|---|
committer | 2002-12-08 04:06:01 +0000 | |
commit | 9a943ad1c5b92f638e38f87a3e377888280aabb6 (patch) | |
tree | 3a37edadb8f9f7cb96d0c82a21d2747fb74f3478 /lib/libpthread | |
parent | Avoid using "optind = 0" since its meaning to getopt() is implementation (diff) | |
download | wireguard-openbsd-9a943ad1c5b92f638e38f87a3e377888280aabb6.tar.xz wireguard-openbsd-9a943ad1c5b92f638e38f87a3e377888280aabb6.zip |
remove unused data member from pthread_cond.
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/uthread/pthread_private.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h index 749c4e05791..a4ab5f48044 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.38 2002/11/12 20:12:45 marc Exp $ */ +/* $OpenBSD: pthread_private.h,v 1.39 2002/12/08 04:06:01 marc Exp $ */ /* * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>. * All rights reserved. @@ -296,7 +296,6 @@ struct pthread_cond { enum pthread_cond_type c_type; V_TAILQ_HEAD(cond_head, pthread) c_queue; pthread_mutex_t c_mutex; - void *c_data; long c_flags; int c_seqno; |