/*
- * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: t_db.c,v 1.37 2009/01/22 05:39:28 marka Exp $ */
+/* $Id: t_db.c,v 1.38 2009/01/22 23:47:53 tbox Exp $ */
#include <config.h>
/*
- * Copyright (C) 2004, 2005, 2007, 2008 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007-2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: t_dst.c,v 1.56 2009/01/22 05:39:28 marka Exp $ */
+/* $Id: t_dst.c,v 1.57 2009/01/22 23:47:54 tbox Exp $ */
#include <config.h>
/*
- * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1998-2001, 2003 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: t_master.c,v 1.37 2009/01/22 05:39:29 marka Exp $ */
+/* $Id: t_master.c,v 1.38 2009/01/22 23:47:54 tbox Exp $ */
#include <config.h>
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: t_mem.c,v 1.14 2009/01/22 05:39:29 marka Exp $ */
+/* $Id: t_mem.c,v 1.15 2009/01/22 23:47:54 tbox Exp $ */
#include <config.h>
/*
- * Copyright (C) 2004-2008 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1998-2003 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: t_names.c,v 1.47 2009/01/22 05:39:29 marka Exp $ */
+/* $Id: t_names.c,v 1.48 2009/01/22 23:47:54 tbox Exp $ */
#include <config.h>
/*
- * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1998-2001, 2003 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: t_rbt.c,v 1.31 2009/01/22 05:39:29 marka Exp $ */
+/* $Id: t_rbt.c,v 1.32 2009/01/22 23:47:54 tbox Exp $ */
#include <config.h>
if (*dns_result != ISC_R_SUCCESS) {
delete_name(dns_name, mctx);
t_info("dns_rbt_addname failed %s\n",
- dns_result_totext(*dns_result));
+ dns_result_totext(*dns_result));
++nprobs;
}
} else {
dns_result = dns_rbt_create(mctx, delete_name, mctx, rbt);
if (dns_result != ISC_R_SUCCESS) {
t_info("dns_rbt_create failed %s\n",
- dns_result_totext(dns_result));
+ dns_result_totext(dns_result));
fclose(fp);
return(1);
}
dns_result = dns_name_concatenate(
dns_fixedname_name(&name),
dns_name_isabsolute(dns_fixedname_name(&name)) ?
- NULL : dns_fixedname_name(&origin),
+ NULL : dns_fixedname_name(&origin),
dns_fixedname_name(&fullname2), NULL);
if (dns_result != ISC_R_SUCCESS) {
t_info("dns_name_concatenate failed %s\n",
/*
- * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1998-2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: t_tasks.c,v 1.41 2009/01/22 05:39:29 marka Exp $ */
+/* $Id: t_tasks.c,v 1.42 2009/01/22 23:47:54 tbox Exp $ */
#include <config.h>
static void
t11(void) {
t_assert("tasks", 11, T_REQUIRED, "%s", a11);
-
+
if (threaded)
t_result(t_tasks11(1));
else
int taskno = *(int *)(event->ev_arg);
- t_info("task enter %d\n", taskno);
+ t_info("task enter %d\n", taskno);
if (taskno == T14_EXCLTASK) {
int i;
t14_exclusiveerror = isc_task_beginexclusive(task);
t_info("task %d failed to got exclusive access: %d\n",
taskno, t14_exclusiveerror);
for (i = 0; i < T14_NTASKS; i++) {
- t_info("task %d state %d\n", i , t14_active[i]);
+ t_info("task %d state %d\n", i , t14_active[i]);
if (t14_active[i])
t14_error++;
}
t14(void) {
int result;
- t_assert("tasks", 14, T_REQUIRED, "%s",
- "isc_task_beginexclusive() gets exclusive access");
+ t_assert("tasks", 14, T_REQUIRED, "%s",
+ "isc_task_beginexclusive() gets exclusive access");
result = t_tasks14();
t_result(result);
}
/*
- * Copyright (C) 2004, 2007, 2008 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007-2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: t_timers.c,v 1.29 2009/01/22 05:39:29 marka Exp $ */
+/* $Id: t_timers.c,v 1.30 2009/01/22 23:47:54 tbox Exp $ */
#include <config.h>
/*
- * Copyright (C) 2004-2008 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1997-2003 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: mem.c,v 1.146 2009/01/22 05:39:29 marka Exp $ */
+/* $Id: mem.c,v 1.147 2009/01/22 23:47:54 tbox Exp $ */
/*! \file */
/*
- * Copyright (C) 2004, 2005, 2007, 2008 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007-2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1998-2002 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: timer.c,v 1.85 2009/01/22 05:39:29 marka Exp $ */
+/* $Id: timer.c,v 1.86 2009/01/22 23:47:54 tbox Exp $ */
/*! \file */
isc_task_send(timer->task,
ISC_EVENT_PTR(&event));
} else
- UNEXPECTED_ERROR(__FILE__, __LINE__, "%s",
+ UNEXPECTED_ERROR(__FILE__, __LINE__, "%s",
isc_msgcat_get(isc_msgcat,
ISC_MSGSET_TIMER,
ISC_MSG_EVENTNOTALLOC,
if (need_schedule) {
result = schedule(timer, now, ISC_FALSE);
if (result != ISC_R_SUCCESS)
- UNEXPECTED_ERROR(__FILE__, __LINE__, "%s",
+ UNEXPECTED_ERROR(__FILE__, __LINE__, "%s",
isc_msgcat_get(isc_msgcat,
ISC_MSGSET_TIMER,
ISC_MSG_SCHEDFAIL,
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: socket.c,v 1.314 2009/01/22 05:39:29 marka Exp $ */
+/* $Id: socket.c,v 1.315 2009/01/22 23:47:54 tbox Exp $ */
/*! \file */
#endif
}
- manager_log(manager, TRACE, "%s",
+ manager_log(manager, TRACE, "%s",
isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL,
ISC_MSG_EXITING, "watcher exiting"));
* Wait for all sockets to be destroyed.
*/
while (!ISC_LIST_EMPTY(manager->socklist)) {
- manager_log(manager, CREATION, "%s",
+ manager_log(manager, CREATION, "%s",
isc_msgcat_get(isc_msgcat, ISC_MSGSET_SOCKET,
ISC_MSG_SOCKETSREMAIN,
"sockets exist"));