summaryrefslogtreecommitdiffstats
path: root/zebra/zserv.h
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2018-12-14 16:02:33 +0100
committerGitHub <noreply@github.com>2018-12-14 16:02:33 +0100
commit681c5c2b2987f78083505bedc493427d4f8e53b3 (patch)
tree6737c6a6435b7ee60066b94df961cf276c6e7e69 /zebra/zserv.h
parentMerge pull request #3464 from mjstapp/wq_event (diff)
parentzebra: make incoming zserv message-processing a singleton event (diff)
downloadfrr-681c5c2b2987f78083505bedc493427d4f8e53b3.tar.xz
frr-681c5c2b2987f78083505bedc493427d4f8e53b3.zip
Merge pull request #3463 from mjstapp/zserv_event
zebra: make incoming zserv message-processing a singleton event
Diffstat (limited to 'zebra/zserv.h')
-rw-r--r--zebra/zserv.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/zebra/zserv.h b/zebra/zserv.h
index fe1dbdbfe..439082e78 100644
--- a/zebra/zserv.h
+++ b/zebra/zserv.h
@@ -73,6 +73,9 @@ struct zserv {
struct thread *t_read;
struct thread *t_write;
+ /* Event for message processing, for the main pthread */
+ struct thread *t_process;
+
/* Threads for the main pthread */
struct thread *t_cleanup;