diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2018-09-11 20:27:09 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-10-01 09:44:58 +0000 |
commit | 5d64c7868f67749a6c99eb4ee5998b518ab6c71c (patch) | |
tree | 57ce487477ddb12dddeb21340ad875328f2ea5a0 /src/vlib/threads.h | |
parent | 28c142e3dedc0b136003f33f67243bf3c1873b71 (diff) |
thread: Add show threads api
Change-Id: I3124238ab4d43bcef5590bad33a4ff0b5d8b7d15
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Diffstat (limited to 'src/vlib/threads.h')
-rw-r--r-- | src/vlib/threads.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/vlib/threads.h b/src/vlib/threads.h index 7de0412362e..71b5d0c8261 100644 --- a/src/vlib/threads.h +++ b/src/vlib/threads.h @@ -108,7 +108,9 @@ typedef struct volatile u32 *node_reforks_required; long lwp; - int lcore_id; + int cpu_id; + int core_id; + int socket_id; pthread_t thread_id; } vlib_worker_thread_t; @@ -270,8 +272,8 @@ typedef enum typedef struct { clib_error_t *(*vlib_launch_thread_cb) (void *fp, vlib_worker_thread_t * w, - unsigned lcore_id); - clib_error_t *(*vlib_thread_set_lcore_cb) (u32 thread, u16 lcore); + unsigned cpu_id); + clib_error_t *(*vlib_thread_set_lcore_cb) (u32 thread, u16 cpu); } vlib_thread_callbacks_t; typedef struct |