diff options
author | Damjan Marion <damarion@cisco.com> | 2017-05-10 21:06:28 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2017-05-10 22:01:15 +0000 |
commit | f55f9b851f59264d737d92c6277a87588c565d24 (patch) | |
tree | 4e1c69bed3ff6b0968b9558a814a23edac4f9ae6 /src/vppinfra/lock.h | |
parent | e5f1d27695e2e6b9be17198e9b49e95639a15c58 (diff) |
completelly deprecate os_get_cpu_number, replace new occurences
Change-Id: I82c663bc0866c6c68ba354104b0bb059387f4b9d
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/lock.h')
-rw-r--r-- | src/vppinfra/lock.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vppinfra/lock.h b/src/vppinfra/lock.h index c60ff414612..0cd2b4fea53 100644 --- a/src/vppinfra/lock.h +++ b/src/vppinfra/lock.h @@ -24,7 +24,7 @@ typedef struct u32 lock; #if CLIB_DEBUG > 0 pid_t pid; - uword cpu_index; + uword thread_index; void *frame_address; #endif } *clib_spinlock_t; @@ -57,7 +57,7 @@ clib_spinlock_lock (clib_spinlock_t * p) #if CLIB_DEBUG > 0 (*p)->frame_address = __builtin_frame_address (0); (*p)->pid = getpid (); - (*p)->cpu_index = os_get_cpu_number (); + (*p)->thread_index = os_get_thread_index (); #endif } @@ -75,7 +75,7 @@ clib_spinlock_unlock (clib_spinlock_t * p) #if CLIB_DEBUG > 0 (*p)->frame_address = 0; (*p)->pid = 0; - (*p)->cpu_index = 0; + (*p)->thread_index = 0; #endif } |