diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-12-14 16:02:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-14 16:02:33 +0100 |
commit | 681c5c2b2987f78083505bedc493427d4f8e53b3 (patch) | |
tree | 6737c6a6435b7ee60066b94df961cf276c6e7e69 /zebra/zserv.h | |
parent | Merge pull request #3464 from mjstapp/wq_event (diff) | |
parent | zebra: make incoming zserv message-processing a singleton event (diff) | |
download | frr-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.h | 3 |
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; |