aboutsummaryrefslogtreecommitdiffstats
path: root/src/vlib/threads.h
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2017-03-28 15:11:20 +0200
committerOle Trøan <otroan@employees.org>2017-03-28 14:26:07 +0000
commit9a332e1639fbfb4eb4ddf47b1681e05493ae6da3 (patch)
tree0773e087361c44f39dc5bcd2188de02f01af76b0 /src/vlib/threads.h
parent60750434fce12e320968a5bbc14cca080048ffd1 (diff)
vlib: inline dispatch_node(...) (again)
Worker main loop is now shared code with main thread main loop so no need to export functions anymore. Change-Id: I99ee2eee981c1b88ca31d20eabeb6c21d030a34d Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vlib/threads.h')
-rw-r--r--src/vlib/threads.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/vlib/threads.h b/src/vlib/threads.h
index fc1633f610e..39f64e1dca0 100644
--- a/src/vlib/threads.h
+++ b/src/vlib/threads.h
@@ -162,15 +162,6 @@ int vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
int
vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm);
-u64 dispatch_node (vlib_main_t * vm,
- vlib_node_runtime_t * node,
- vlib_node_type_t type,
- vlib_node_state_t dispatch_state,
- vlib_frame_t * frame, u64 last_time_stamp);
-
-u64 dispatch_pending_node (vlib_main_t * vm,
- vlib_pending_frame_t * p, u64 last_time_stamp);
-
void vlib_worker_thread_node_runtime_update (void);
void vlib_create_worker_threads (vlib_main_t * vm, int n,