oops, compile when not HAVE_THREADS

This commit is contained in:
David Rose 2007-08-07 01:29:51 +00:00
parent bfd91c6e66
commit 1f99794cdb

View File

@ -124,7 +124,7 @@ output(ostream &out) const {
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
void Thread:: void Thread::
write_status(ostream &out) { write_status(ostream &out) {
#ifdef SIMPLE_THREADS #if defined(HAVE_THREADS) && defined(SIMPLE_THREADS)
ThreadImpl::write_status(out); ThreadImpl::write_status(out);
#endif #endif
} }