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

Cleanup the isc_<*>mgr_createinc() constructors

Previously, the taskmgr, timermgr and socketmgr had a constructor
variant, that would create the mgr on top of existing appctx.  This was
no longer true and isc_<*>mgr was just calling isc_<*>mgr_create()
directly without any extra code.

This commit just cleans up the extra function.
This commit is contained in:
Ondřej Surý
2021-04-19 10:20:43 +02:00
parent eb32677de5
commit 3388ef36b3
10 changed files with 8 additions and 67 deletions

View File

@@ -770,12 +770,3 @@ isc_timermgr_destroy(isc_timermgr_t **managerp) {
*managerp = NULL;
}
isc_result_t
isc_timermgr_createinctx(isc_mem_t *mctx, isc_timermgr_t **managerp) {
isc_result_t result;
result = isc_timermgr_create(mctx, managerp);
return (result);
}