2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

Only include isc/thread.h, isc/mutex.h and isc/condition.h if

ISC_PLATFORM_USETHREADS is defined.
This commit is contained in:
David Lawrence
2000-12-26 21:12:25 +00:00
parent 8ab1d97093
commit bdcae3560b
4 changed files with 19 additions and 16 deletions

View File

@@ -15,22 +15,23 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: timer.c,v 1.59 2000/12/06 00:30:13 tale Exp $ */
/* $Id: timer.c,v 1.60 2000/12/26 21:12:23 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>
#ifndef ISC_PLATFORM_USETHREADS
#ifdef ISC_PLATFORM_USETHREADS
#include <isc/condition.h>
#include <isc/thread.h>
#else /* ISC_PLATFORM_USETHREADS */
#include "timer_p.h"
#endif /* ISC_PLATFORM_USETHREADS */