forked from Imagelibrary/rtems
PR 677/misc * dumpbuf/dumpbuf.h, fsmount/fsmount.h, rtmonuse/rtmonuse.h, serdbg/serdbg.h, serdbg/serdbgcnf.h, serdbg/termios_printk.h, serdbg/termios_printk_cnf.h, untar/untar.h: Add extern C wrappers.
27 lines
315 B
C
27 lines
315 B
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef __RATE_MONOTONIC_USAGE_h
|
|
#define __RATE_MONOTONIC_USAGE_h
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void Period_usage_Initialize( void );
|
|
|
|
void Period_usage_Reset( void );
|
|
|
|
void Period_usage_Update(
|
|
rtems_id id
|
|
);
|
|
|
|
void Period_usage_Dump( void );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|