2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

Revert my last change. It was stupid, which I if I had been thinking clearly

I would have seen *before* I commited anything.  So, include isc/thread.h,
isc/mutex.h and isc/condition.h even if ISC_PLATFORM_USETHREADS is not defined.

(What caused me to bother with this at all was a problem that I resolved
a few days ago by fixing configure ... though now that I think about it,
that probably means there is some other latent problem with inconsistent
definitions that could maybe be handled better.  I'll look into it more
later, AFTER vacation.)
This commit is contained in:
David Lawrence
2000-12-26 21:45:08 +00:00
parent bdcae3560b
commit 801dceea23
4 changed files with 16 additions and 19 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: task.c,v 1.77 2000/12/26 21:12:21 tale Exp $ */
/* $Id: task.c,v 1.78 2000/12/26 21:45:04 tale Exp $ */
/*
* Principal Author: Bob Halley
@@ -28,18 +28,17 @@
#include <config.h>
#include <isc/condition.h>
#include <isc/event.h>
#include <isc/mem.h>
#include <isc/msgs.h>
#include <isc/platform.h>
#include <isc/string.h>
#include <isc/task.h>
#include <isc/thread.h>
#include <isc/util.h>
#ifdef ISC_PLATFORM_USETHREADS
#include <isc/condition.h>
#include <isc/thread.h>
#else /* ISC_PLATFORM_USETHREADS */
#ifndef ISC_PLATFORM_USETHREADS
#include "task_p.h"
#endif /* ISC_PLATFORM_USETHREADS */