2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

new functions isc_task_getname() and isc_task_gettag(),

to be used for debugging
This commit is contained in:
Andreas Gustafsson
2000-07-26 17:11:14 +00:00
parent 6e1de1f55b
commit 97684ed87d
2 changed files with 43 additions and 2 deletions

View File

@@ -15,7 +15,7 @@
* SOFTWARE.
*/
/* $Id: task.c,v 1.65 2000/06/22 21:57:16 tale Exp $ */
/* $Id: task.c,v 1.66 2000/07/26 17:11:13 gson Exp $ */
/*
* Principal Author: Bob Halley
@@ -681,6 +681,17 @@ isc_task_setname(isc_task_t *task, const char *name, void *tag) {
}
const char *
isc_task_getname(isc_task_t *task) {
return (task->name);
}
void *
isc_task_gettag(isc_task_t *task) {
return (task->tag);
}
/***
*** Task Manager.
***/