Files
rtems/cpukit/libmisc/cpuuse/cpuusagedata.c
Joel Sherrill e6b31b27fb 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.
2015-06-15 13:20:17 -05:00

26 lines
500 B
C

/**
* @file
*
* @brief CPU Usage Data
* @ingroup libmisc_cpuuse CPU Usage
*
* CPU Usage Reporter - Shared Data
*/
/*
* COPYRIGHT (c) 1989-2009
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.org/license/LICENSE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems/cpuuse.h>
Timestamp_Control CPU_usage_Uptime_at_last_reset;