forked from Imagelibrary/rtems
* cpuuse/cpuuse.c, cpuuse/cpuuse.h, devnull/devnull.c, devnull/devnull.h, dummy/dummy.c, dumpbuf/dumpbuf.c, dumpbuf/dumpbuf.h, fsmount/fsmount.c, fsmount/fsmount.h, serdbg/serdbgio.c, serdbg/termios_printk.c, stackchk/check.c, stackchk/internal.h, stackchk/stackchk.h, untar/untar.c, untar/untar.h: URL for license changed.
41 lines
660 B
C
41 lines
660 B
C
/* cpuuse.h
|
|
*
|
|
* This include file contains information necessary to utilize
|
|
* and install the cpu usage reporting mechanism.
|
|
*
|
|
* COPYRIGHT (c) 1989-1999. 1996.
|
|
* 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.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef __CPU_USE_h
|
|
#define __CPU_USE_h
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*
|
|
* CPU_usage_Dump
|
|
*/
|
|
|
|
void CPU_usage_Dump( void );
|
|
|
|
/*
|
|
* CPU_usage_Reset
|
|
*/
|
|
|
|
void CPU_usage_Reset( void );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
/* end of include file */
|