summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/perthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/perthread.h')
-rw-r--r--winsup/cygwin/perthread.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/winsup/cygwin/perthread.h b/winsup/cygwin/perthread.h
index 429b7cac9..e10a62476 100644
--- a/winsup/cygwin/perthread.h
+++ b/winsup/cygwin/perthread.h
@@ -34,15 +34,6 @@ public:
}
};
-class per_thread_waitq : public per_thread
-{
-public:
- per_thread_waitq () : per_thread (0) {}
- void *get () {return (waitq *) per_thread::get ();}
- void *create () {return (waitq *) per_thread::create ();}
- size_t size () {return sizeof (waitq);}
-};
-
#ifdef NEED_VFORK
#include "cygtls.h"
#endif
@@ -92,6 +83,4 @@ extern vfork_save *main_vfork;
#endif
#endif /*NEWVFORK*/
-extern per_thread_waitq waitq_storage;
-
extern per_thread *threadstuff[];