forked from Imagelibrary/rtems
PR 677/misc * libmisc/dumpbuf/dumpbuf.h, libmisc/fsmount/fsmount.h, libmisc/rtmonuse/rtmonuse.h, libmisc/serdbg/serdbg.h, libmisc/serdbg/serdbgcnf.h, libmisc/serdbg/termios_printk.h, libmisc/serdbg/termios_printk_cnf.h, libmisc/untar/untar.h: Add extern C wrappers.
27 lines
314 B
C
27 lines
314 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
|