diff options
Diffstat (limited to 'src/vcl')
-rw-r--r-- | src/vcl/vppcom.c | 6 | ||||
-rw-r--r-- | src/vcl/vppcom.h | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/vcl/vppcom.c b/src/vcl/vppcom.c index 38b85bede3b..6b690e5d1d0 100644 --- a/src/vcl/vppcom.c +++ b/src/vcl/vppcom.c @@ -3830,6 +3830,12 @@ vppcom_worker_unregister (void) vcl_set_worker_index (~0); } +void +vppcom_worker_index_set (int index) +{ + vcl_set_worker_index (index); +} + int vppcom_worker_index (void) { diff --git a/src/vcl/vppcom.h b/src/vcl/vppcom.h index d2a5a103f8d..902e9ea5d47 100644 --- a/src/vcl/vppcom.h +++ b/src/vcl/vppcom.h @@ -330,6 +330,11 @@ extern void vppcom_worker_unregister (void); extern int vppcom_worker_index (void); /** + * Set current worker index + */ +extern void vppcom_worker_index_set (int); + +/** * Returns the current worker's message queues epoll fd * * This only works if vcl is configured to do eventfd based message queue |