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:
@@ -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
|
||||
|
Reference in New Issue
Block a user