source: rtems/cpukit/libmisc/cpuuse/cpuusagedata.c @ e0938c2

4.115
Last change on this file since e0938c2 was e6b31b27, checked in by Joel Sherrill <joel.sherrill@…>, on 05/27/15 at 15:13:58

Remove use ticks for statistics configure option.

This was obsolete and broken based upon recent time keeping changes.

Thie build option was previously enabled by adding
USE_TICKS_FOR_STATISTICS=1 to the configure command line.

This propagated into the code as preprocessor conditionals
using the RTEMS_USE_TICKS_FOR_STATISTICS conditional.

  • Property mode set to 100644
File size: 500 bytes
Line 
1/**
2 * @file
3 *
4 * @brief CPU Usage Data
5 * @ingroup libmisc_cpuuse CPU Usage
6 *
7 * CPU Usage Reporter - Shared Data
8 */
9
10/*
11 *  COPYRIGHT (c) 1989-2009
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.rtems.org/license/LICENSE.
17 */
18
19#ifdef HAVE_CONFIG_H
20#include "config.h"
21#endif
22
23#include <rtems/cpuuse.h>
24
25Timestamp_Control  CPU_usage_Uptime_at_last_reset;
Note: See TracBrowser for help on using the repository browser.