mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
move stack variable declaration within the ISC_PLATFORM_USETHREADS conditional
blocks.
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: t_tasks.c,v 1.24 2001/04/12 21:31:36 tale Exp $ */
|
/* $Id: t_tasks.c,v 1.25 2001/04/12 22:56:00 tale Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -460,6 +460,10 @@ t2_callback(isc_task_t *task, isc_event_t *event) {
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
t_tasks2(void) {
|
t_tasks2(void) {
|
||||||
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
|
t_info("This test requires threads\n");
|
||||||
|
return (T_UNTESTED);
|
||||||
|
#else
|
||||||
int ntasks;
|
int ntasks;
|
||||||
int result;
|
int result;
|
||||||
char *p;
|
char *p;
|
||||||
@@ -467,10 +471,6 @@ t_tasks2(void) {
|
|||||||
unsigned int workers;
|
unsigned int workers;
|
||||||
isc_result_t isc_result;
|
isc_result_t isc_result;
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
|
||||||
t_info("This test requires threads\n");
|
|
||||||
return (T_UNTESTED);
|
|
||||||
#else
|
|
||||||
T2_manager = NULL;
|
T2_manager = NULL;
|
||||||
T2_done = 0;
|
T2_done = 0;
|
||||||
T2_nprobs = 0;
|
T2_nprobs = 0;
|
||||||
@@ -647,6 +647,10 @@ t3_event2(isc_task_t *task, isc_event_t *event) {
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
t_tasks3(void) {
|
t_tasks3(void) {
|
||||||
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
|
t_info("This test requires threads\n");
|
||||||
|
return (T_UNTESTED);
|
||||||
|
#else
|
||||||
int cnt;
|
int cnt;
|
||||||
int result;
|
int result;
|
||||||
char *p;
|
char *p;
|
||||||
@@ -659,10 +663,6 @@ t_tasks3(void) {
|
|||||||
void *sender;
|
void *sender;
|
||||||
isc_eventtype_t event_type;
|
isc_eventtype_t event_type;
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
|
||||||
t_info("This test requires threads\n");
|
|
||||||
return (T_UNTESTED);
|
|
||||||
#else
|
|
||||||
T3_flag = 0;
|
T3_flag = 0;
|
||||||
T3_nevents = 0;
|
T3_nevents = 0;
|
||||||
T3_nsdevents = 0;
|
T3_nsdevents = 0;
|
||||||
@@ -874,6 +874,10 @@ t4_sde(isc_task_t *task, isc_event_t *event) {
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
t_tasks4(void) {
|
t_tasks4(void) {
|
||||||
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
|
t_info("This test requires threads\n");
|
||||||
|
return (T_UNTESTED);
|
||||||
|
#else
|
||||||
int result;
|
int result;
|
||||||
char *p;
|
char *p;
|
||||||
isc_mem_t *mctx;
|
isc_mem_t *mctx;
|
||||||
@@ -885,10 +889,6 @@ t_tasks4(void) {
|
|||||||
isc_eventtype_t event_type;
|
isc_eventtype_t event_type;
|
||||||
isc_event_t *event;
|
isc_event_t *event;
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
|
||||||
t_info("This test requires threads\n");
|
|
||||||
return (T_UNTESTED);
|
|
||||||
#else
|
|
||||||
T4_nprobs = 0;
|
T4_nprobs = 0;
|
||||||
T4_nfails = 0;
|
T4_nfails = 0;
|
||||||
T4_flag = 0;
|
T4_flag = 0;
|
||||||
@@ -1076,6 +1076,10 @@ t7_sde(isc_task_t *task, isc_event_t *event) {
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
t_tasks7(void) {
|
t_tasks7(void) {
|
||||||
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
|
t_info("This test requires threads\n");
|
||||||
|
return (T_UNTESTED);
|
||||||
|
#else
|
||||||
int result;
|
int result;
|
||||||
char *p;
|
char *p;
|
||||||
isc_mem_t *mctx;
|
isc_mem_t *mctx;
|
||||||
@@ -1089,10 +1093,6 @@ t_tasks7(void) {
|
|||||||
isc_time_t now;
|
isc_time_t now;
|
||||||
isc_interval_t interval;
|
isc_interval_t interval;
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
|
||||||
t_info("This test requires threads\n");
|
|
||||||
return (T_UNTESTED);
|
|
||||||
#else
|
|
||||||
T7_nprobs = 0;
|
T7_nprobs = 0;
|
||||||
T7_nfails = 0;
|
T7_nfails = 0;
|
||||||
T7_sdflag = 0;
|
T7_sdflag = 0;
|
||||||
@@ -1656,12 +1656,12 @@ t_taskpurge_x(int sender, int type, int tag, int purge_sender,
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
t_tasks10(void) {
|
t_tasks10(void) {
|
||||||
int result;
|
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
t_info("This test requires threads\n");
|
t_info("This test requires threads\n");
|
||||||
return (T_UNTESTED);
|
return (T_UNTESTED);
|
||||||
#else
|
#else
|
||||||
|
int result;
|
||||||
|
|
||||||
T10_nprobs = 0;
|
T10_nprobs = 0;
|
||||||
T10_nfails = 0;
|
T10_nfails = 0;
|
||||||
|
|
||||||
@@ -1807,6 +1807,10 @@ t11_sde(isc_task_t *task, isc_event_t *event) {
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
t_tasks11(int purgable) {
|
t_tasks11(int purgable) {
|
||||||
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
|
t_info("This test requires threads\n");
|
||||||
|
return (T_UNTESTED);
|
||||||
|
#else
|
||||||
char *p;
|
char *p;
|
||||||
isc_mem_t *mctx;
|
isc_mem_t *mctx;
|
||||||
isc_taskmgr_t *tmgr;
|
isc_taskmgr_t *tmgr;
|
||||||
@@ -1820,10 +1824,6 @@ t_tasks11(int purgable) {
|
|||||||
isc_interval_t interval;
|
isc_interval_t interval;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
|
||||||
t_info("This test requires threads\n");
|
|
||||||
return (T_UNTESTED);
|
|
||||||
#else
|
|
||||||
T11_startflag = 0;
|
T11_startflag = 0;
|
||||||
T11_shutdownflag = 0;
|
T11_shutdownflag = 0;
|
||||||
T11_eventcnt = 0;
|
T11_eventcnt = 0;
|
||||||
@@ -2036,12 +2036,12 @@ static const char *a13 =
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
t_tasks13(void) {
|
t_tasks13(void) {
|
||||||
int result;
|
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
t_info("This test requires threads\n");
|
t_info("This test requires threads\n");
|
||||||
return (T_UNTESTED);
|
return (T_UNTESTED);
|
||||||
#else
|
#else
|
||||||
|
int result;
|
||||||
|
|
||||||
T13_nfails = 0;
|
T13_nfails = 0;
|
||||||
T13_nprobs = 0;
|
T13_nprobs = 0;
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: t_timers.c,v 1.19 2001/04/12 21:31:38 tale Exp $ */
|
/* $Id: t_timers.c,v 1.20 2001/04/12 22:56:02 tale Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -350,15 +350,15 @@ static const char *a1 =
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
t1(void) {
|
t1(void) {
|
||||||
int result;
|
|
||||||
isc_time_t expires;
|
|
||||||
isc_interval_t interval;
|
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
t_info("This test requires threads\n");
|
t_info("This test requires threads\n");
|
||||||
t_result(T_UNTESTED);
|
t_result(T_UNTESTED);
|
||||||
return;
|
return;
|
||||||
#else
|
#else
|
||||||
|
int result;
|
||||||
|
isc_time_t expires;
|
||||||
|
isc_interval_t interval;
|
||||||
|
|
||||||
t_assert("isc_timer_create", 1, T_REQUIRED, a1);
|
t_assert("isc_timer_create", 1, T_REQUIRED, a1);
|
||||||
|
|
||||||
Tx_nfails = 0;
|
Tx_nfails = 0;
|
||||||
@@ -393,16 +393,16 @@ static const char *a2 =
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
t2(void) {
|
t2(void) {
|
||||||
int result;
|
|
||||||
int isc_result;
|
|
||||||
isc_time_t expires;
|
|
||||||
isc_interval_t interval;
|
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
t_info("This test requires threads\n");
|
t_info("This test requires threads\n");
|
||||||
t_result(T_UNTESTED);
|
t_result(T_UNTESTED);
|
||||||
return;
|
return;
|
||||||
#else
|
#else
|
||||||
|
int result;
|
||||||
|
int isc_result;
|
||||||
|
isc_time_t expires;
|
||||||
|
isc_interval_t interval;
|
||||||
|
|
||||||
t_assert("isc_timer_create", 2, T_REQUIRED, a2);
|
t_assert("isc_timer_create", 2, T_REQUIRED, a2);
|
||||||
|
|
||||||
Tx_nfails = 0;
|
Tx_nfails = 0;
|
||||||
@@ -521,16 +521,16 @@ static const char *a3 =
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
t3(void) {
|
t3(void) {
|
||||||
int result;
|
|
||||||
int isc_result;
|
|
||||||
isc_time_t expires;
|
|
||||||
isc_interval_t interval;
|
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
t_info("This test requires threads\n");
|
t_info("This test requires threads\n");
|
||||||
t_result(T_UNTESTED);
|
t_result(T_UNTESTED);
|
||||||
return;
|
return;
|
||||||
#else
|
#else
|
||||||
|
int result;
|
||||||
|
int isc_result;
|
||||||
|
isc_time_t expires;
|
||||||
|
isc_interval_t interval;
|
||||||
|
|
||||||
t_assert("isc_timer_create", 3, T_REQUIRED, a3);
|
t_assert("isc_timer_create", 3, T_REQUIRED, a3);
|
||||||
|
|
||||||
Tx_nfails = 0;
|
Tx_nfails = 0;
|
||||||
@@ -687,15 +687,15 @@ static const char *a4 =
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
t4(void) {
|
t4(void) {
|
||||||
int result;
|
|
||||||
isc_time_t expires;
|
|
||||||
isc_interval_t interval;
|
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
t_info("This test requires threads\n");
|
t_info("This test requires threads\n");
|
||||||
t_result(T_UNTESTED);
|
t_result(T_UNTESTED);
|
||||||
return;
|
return;
|
||||||
#else
|
#else
|
||||||
|
int result;
|
||||||
|
isc_time_t expires;
|
||||||
|
isc_interval_t interval;
|
||||||
|
|
||||||
Tx_nfails = 0;
|
Tx_nfails = 0;
|
||||||
Tx_nprobs = 0;
|
Tx_nprobs = 0;
|
||||||
Tx_nevents = 3;
|
Tx_nevents = 3;
|
||||||
@@ -874,7 +874,10 @@ t5_shutdown_event(isc_task_t *task, isc_event_t *event) {
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
t_timers5(void) {
|
t_timers5(void) {
|
||||||
|
#if ! ISC_PLATFORM_USETHREADS
|
||||||
|
t_info("This test requires threads\n");
|
||||||
|
return (T_UNTESTED);
|
||||||
|
#else
|
||||||
char *p;
|
char *p;
|
||||||
int result;
|
int result;
|
||||||
isc_mem_t *mctx;
|
isc_mem_t *mctx;
|
||||||
@@ -886,10 +889,6 @@ t_timers5(void) {
|
|||||||
isc_time_t expires;
|
isc_time_t expires;
|
||||||
isc_interval_t interval;
|
isc_interval_t interval;
|
||||||
|
|
||||||
#if ! ISC_PLATFORM_USETHREADS
|
|
||||||
t_info("This test requires threads\n");
|
|
||||||
return (T_UNTESTED);
|
|
||||||
#else
|
|
||||||
T5_startflag = 0;
|
T5_startflag = 0;
|
||||||
T5_shutdownflag = 0;
|
T5_shutdownflag = 0;
|
||||||
T5_eventcnt = 0;
|
T5_eventcnt = 0;
|
||||||
|
Reference in New Issue
Block a user