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

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 610 bytes
RevLine 
[f5f2676]1/**
2 * @file
3 *
4 * @brief CPU Usage Data
5 * @ingroup libmisc_cpuuse CPU Usage
[793dd46]6 *
[f5f2676]7 * CPU Usage Reporter - Shared Data
8 */
9
10/*
[dca9a82]11 *  COPYRIGHT (c) 1989-2009
[793dd46]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
[c499856]16 *  http://www.rtems.org/license/LICENSE.
[793dd46]17 */
18
19#ifdef HAVE_CONFIG_H
20#include "config.h"
21#endif
22
23#include <rtems/cpuuse.h>
24
[c6f7e060]25#ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__
[baef6771]26  Timestamp_Control  CPU_usage_Uptime_at_last_reset;
[793dd46]27#else
28  uint32_t           CPU_usage_Ticks_at_last_reset;
29#endif
Note: See TracBrowser for help on using the repository browser.