mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +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:
@@ -15,23 +15,22 @@
|
||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: timer.c,v 1.60 2000/12/26 21:12:23 tale Exp $ */
|
||||
/* $Id: timer.c,v 1.61 2000/12/26 21:45:05 tale Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <isc/condition.h>
|
||||
#include <isc/heap.h>
|
||||
#include <isc/mem.h>
|
||||
#include <isc/msgs.h>
|
||||
#include <isc/platform.h>
|
||||
#include <isc/task.h>
|
||||
#include <isc/thread.h>
|
||||
#include <isc/time.h>
|
||||
#include <isc/timer.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 "timer_p.h"
|
||||
#endif /* ISC_PLATFORM_USETHREADS */
|
||||
|
||||
|
Reference in New Issue
Block a user