source: rtems/cpukit/libmisc/cpuuse/cpuuse.h @ dc2a1750

4.104.114.84.95
Last change on this file since dc2a1750 was bc11ec2, checked in by Joel Sherrill <joel.sherrill@…>, on 09/14/06 at 15:07:19

2006-09-14 Joel Sherrill <joel@…>

  • libmisc/cpuuse/cpuuse.c, libmisc/cpuuse/cpuuse.h: Promote CPU Usage to first class citizen. Rename to start with rtems_ and include documentation in user guide.
  • Property mode set to 100644
File size: 692 bytes
Line 
1/*  cpuuse.h
2 *
3 *  This include file contains information necessary to utilize
4 *  and install the cpu usage reporting mechanism.
5 *
6 *  COPYRIGHT (c) 1989-2006.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16#ifndef __RTEMS_CPUUSE_h
17#define __RTEMS_CPUUSE_h
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23/*
24 *  rtems_cpu_usage_report
25 */
26
27void rtems_cpu_usage_report( void );
28
29/*
30 *  rtems_cpu_usage_reset
31 */
32
33void rtems_cpu_usage_reset( void );
34
35#ifdef __cplusplus
36}
37#endif
38
39#endif
40/* end of include file */
Note: See TracBrowser for help on using the repository browser.