2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

many name conversions

This commit is contained in:
Bob Halley
1998-10-21 01:13:50 +00:00
parent 8b935d4a13
commit f47bb8d1f3
13 changed files with 184 additions and 194 deletions

View File

@@ -13,7 +13,7 @@
mem_context_t mctx = NULL;
static boolean_t
static isc_boolean_t
my_callback(task_t task, task_event_t event)
{
int i, j;
@@ -24,24 +24,24 @@ my_callback(task_t task, task_event_t event)
j += 100;
printf("task %s: %d\n", name, j);
return (FALSE);
return (ISC_FALSE);
}
static boolean_t
static isc_boolean_t
my_shutdown(task_t task, task_event_t event) {
char *name = event->arg;
printf("shutdown %s\n", name);
return (TRUE);
return (ISC_TRUE);
}
static boolean_t
static isc_boolean_t
my_tick(task_t task, task_event_t event)
{
char *name = event->arg;
printf("task %p tick %s\n", task, name);
return (FALSE);
return (ISC_FALSE);
}
void