diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-04-24 00:35:35 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-05-29 21:06:16 +0200 |
commit | 21ccc0cf24f80b7b75815dba3da308f6bae70492 (patch) | |
tree | 6bf49b5128524f5d7e1d5a39be34d44d70a5a211 /zebra/zebra_ptm.c | |
parent | zebra: reorganize zserv.c by pthread affinity (diff) | |
download | frr-21ccc0cf24f80b7b75815dba3da308f6bae70492.tar.xz frr-21ccc0cf24f80b7b75815dba3da308f6bae70492.zip |
zebra: refactor zserv names, consolidate events
* Add centralized thread scheduling dispatchers for client threads and
the main thread
* Rename everything in zserv.c to stop using a combination of:
- zebra_server_*
- zebra_*
- zserv_*
Everything in zserv.c now begins with zserv_*.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_ptm.c')
-rw-r--r-- | zebra/zebra_ptm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_ptm.c b/zebra/zebra_ptm.c index d20f93f52..8c23bf34c 100644 --- a/zebra/zebra_ptm.c +++ b/zebra/zebra_ptm.c @@ -126,7 +126,7 @@ void zebra_ptm_init(void) ptm_cb.ptm_sock = -1; - hook_register(zapi_client_close, zebra_ptm_bfd_client_deregister); + hook_register(zserv_client_close, zebra_ptm_bfd_client_deregister); } void zebra_ptm_finish(void) |