From 5fc727fe77a632f9df38161a8474007dab020608 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 26 Nov 2018 08:25:36 +0100 Subject: score: Remove include from . Close #3598. --- cpukit/score/src/profilingsmplock.c | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) (limited to 'cpukit/score/src') diff --git a/cpukit/score/src/profilingsmplock.c b/cpukit/score/src/profilingsmplock.c index 6d573a71f6..7040fa25ec 100644 --- a/cpukit/score/src/profilingsmplock.c +++ b/cpukit/score/src/profilingsmplock.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014 embedded brains GmbH. All rights reserved. + * Copyright (c) 2014, 2018 embedded brains GmbH. All rights reserved. * * embedded brains GmbH * Dornierstr. 4 @@ -17,6 +17,7 @@ #endif #include +#include #include @@ -81,14 +82,22 @@ void _SMP_lock_Stats_destroy( SMP_lock_Stats *stats ) } } -void _SMP_lock_Stats_register( SMP_lock_Stats *stats ) +void _SMP_lock_Stats_register_or_max_section_time( + SMP_lock_Stats *stats, + CPU_Counter_ticks max_section_time +) { - SMP_lock_Stats_control *control = &_SMP_lock_Stats_control; - SMP_lock_Context lock_context; + stats->max_section_time = max_section_time; + + if ( _Chain_Is_node_off_chain( &stats->Node ) ) { + SMP_lock_Stats_control *control; + SMP_lock_Context lock_context; - _SMP_lock_ISR_disable_and_acquire( &control->Lock, &lock_context ); - _Chain_Append_unprotected( &control->Stats_chain, &stats->Node ); - _SMP_lock_Release_and_ISR_enable( &control->Lock, &lock_context ); + control = &_SMP_lock_Stats_control; + _SMP_lock_ISR_disable_and_acquire( &control->Lock, &lock_context ); + _Chain_Append_unprotected( &control->Stats_chain, &stats->Node ); + _SMP_lock_Release_and_ISR_enable( &control->Lock, &lock_context ); + } } void _SMP_lock_Stats_iteration_start( -- cgit v1.2.3