source: rtems/cpukit/rtems/src/ratemongetstatistics.c @ 66cb142

5
Last change on this file since 66cb142 was ee0e4135, checked in by Sebastian Huber <sebastian.huber@…>, on 08/04/16 at 08:20:29

score: Fix a release/cancel job race condition

Split up the potential thread priority change in the scheduler
release/cancel job operation. Protect the rate monotonic period state
with a dedicated SMP lock. This avoids a race condition during
_Rate_monotonic_Timeout() while _Rate_monotonic_Cancel() is called on
another processor.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/**
2 *  @file
3 *
4 *  @brief RTEMS Rate Monotonic Get Statistics
5 *  @ingroup ClassicRateMon
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2009.
10 *  On-Line Applications Research Corporation (OAR).
11 *  Copyright (c) 2016 embedded brains GmbH.
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#if HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems/rtems/ratemonimpl.h>
23
24rtems_status_code rtems_rate_monotonic_get_statistics(
25  rtems_id                                id,
26  rtems_rate_monotonic_period_statistics *dst
27)
28{
29  Rate_monotonic_Control          *the_period;
30  ISR_lock_Context                 lock_context;
31  const Rate_monotonic_Statistics *src;
32
33  if ( dst == NULL ) {
34    return RTEMS_INVALID_ADDRESS;
35  }
36
37  the_period = _Rate_monotonic_Get( id, &lock_context );
38  if ( the_period == NULL ) {
39    return RTEMS_INVALID_ID;
40  }
41
42  _Rate_monotonic_Acquire_critical( the_period, &lock_context );
43
44  src = &the_period->Statistics;
45  dst->count        = src->count;
46  dst->missed_count = src->missed_count;
47  _Timestamp_To_timespec( &src->min_cpu_time,    &dst->min_cpu_time );
48  _Timestamp_To_timespec( &src->max_cpu_time,    &dst->max_cpu_time );
49  _Timestamp_To_timespec( &src->total_cpu_time,  &dst->total_cpu_time );
50  _Timestamp_To_timespec( &src->min_wall_time,   &dst->min_wall_time );
51  _Timestamp_To_timespec( &src->max_wall_time,   &dst->max_wall_time );
52  _Timestamp_To_timespec( &src->total_wall_time, &dst->total_wall_time );
53
54  _Rate_monotonic_Release( the_period, &lock_context );
55  return RTEMS_SUCCESSFUL;
56}
Note: See TracBrowser for help on using the repository browser.