From d50acdbb6c8213114ce887a56daea02697c9e1a1 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 10 Mar 2014 08:25:32 +0100 Subject: score: Add local context to SMP lock API Add a local context structure to the SMP lock API for acquire and release pairs. This context can be used to store the ISR level and profiling information. It may be later used to enable more sophisticated lock algorithms, e.g. MCS locks. There is only one lock that cannot be used with a local context. This is the per-CPU lock since here we would have to transfer the local context through a context switch which is very complicated. --- cpukit/score/src/coretodget.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score/src/coretodget.c') diff --git a/cpukit/score/src/coretodget.c b/cpukit/score/src/coretodget.c index 50ca8a0029..6ddf86f18b 100644 --- a/cpukit/score/src/coretodget.c +++ b/cpukit/score/src/coretodget.c @@ -27,15 +27,15 @@ Timestamp_Control *_TOD_Get_with_nanoseconds( ) { TOD_Control *tod = &_TOD; - ISR_Level level; + ISR_lock_Context lock_context; Timestamp_Control offset; Timestamp_Control now; uint32_t nanoseconds; - _TOD_Acquire( tod, level ); + _TOD_Acquire( tod, &lock_context ); nanoseconds = ( *tod->nanoseconds_since_last_tick )(); now = *clock; - _TOD_Release( tod, level ); + _TOD_Release( tod, &lock_context ); _Timestamp_Set( &offset, 0, nanoseconds ); _Timestamp_Add_to( &now, &offset ); -- cgit v1.2.3