mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-23 09:51:03 -05:00
Previously: * applications were using isc_app as the base unit for running the application and signal handling. * networking was handled in the netmgr layer, which would start a number of threads, each with a uv_loop event loop. * task/event handling was done in the isc_task unit, which used netmgr event loops to run the isc_event calls. In this refactoring: * the network manager now uses isc_loop instead of maintaining its own worker threads and event loops. * the taskmgr that manages isc_task instances now also uses isc_loopmgr, and every isc_task runs on a specific isc_loop bound to the specific thread. * applications have been updated as necessary to use the new API. * new ISC_LOOP_TEST macros have been added to enable unit tests to run isc_loop event loops. unit tests have been updated to use this where needed.
33 lines
534 B
Makefile
33 lines
534 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBNS_CFLAGS) \
|
|
$(LIBUV_CFLAGS) \
|
|
-I$(top_srcdir)/lib/isc \
|
|
-I$(top_srcdir)/lib/dns
|
|
|
|
LDADD += \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBNS_LIBS) \
|
|
$(LIBUV_LIBS)
|
|
|
|
check_PROGRAMS = \
|
|
listenlist_test \
|
|
notify_test \
|
|
plugin_test \
|
|
query_test
|
|
|
|
notify_test_SOURCES = \
|
|
notify_test.c \
|
|
netmgr_wrap.c
|
|
|
|
query_test_SOURCES = \
|
|
query_test.c \
|
|
netmgr_wrap.c
|
|
|
|
EXTRA_DIST = testdata
|
|
|
|
include $(top_srcdir)/Makefile.tests
|