mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 10:59:35 -05:00
49 lines
1 KiB
C
49 lines
1 KiB
C
/*
|
|
* Copyright (C) 2011, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
/*! \file */
|
|
|
|
#include <config.h>
|
|
|
|
#include <isc/buffer.h>
|
|
#include <isc/entropy.h>
|
|
#include <isc/hash.h>
|
|
#include <isc/log.h>
|
|
#include <isc/mem.h>
|
|
#include <isc/print.h>
|
|
#include <isc/result.h>
|
|
#include <isc/string.h>
|
|
#include <isc/task.h>
|
|
#include <isc/timer.h>
|
|
#include <isc/util.h>
|
|
|
|
#define CHECK(r) \
|
|
do { \
|
|
result = (r); \
|
|
if (result != ISC_R_SUCCESS) \
|
|
goto cleanup; \
|
|
} while (0)
|
|
|
|
extern isc_mem_t *mctx;
|
|
extern isc_entropy_t *ectx;
|
|
extern isc_log_t *lctx;
|
|
extern isc_taskmgr_t *taskmgr;
|
|
extern isc_timermgr_t *timermgr;
|
|
extern isc_socketmgr_t *socketmgr;
|
|
extern int ncpus;
|
|
|
|
isc_result_t
|
|
isc_test_begin(FILE *logfile, isc_boolean_t start_managers);
|
|
|
|
void
|
|
isc_test_end(void);
|
|
|
|
void
|
|
isc_test_nap(isc_uint32_t usec);
|