forked from Imagelibrary/rtems
* libmisc/capture/capture-cli.h, libmisc/capture/capture.h, libmisc/monitor/monitor.h, libmisc/rtmonuse/rtmonuse.h, libmisc/shell/shell.h: Partial doxygenification. * libmisc/capture/capture.h: Use INT32_C for constants.
31 lines
350 B
C
31 lines
350 B
C
/**
|
|
* @file rtems/rtmonuse.h
|
|
*/
|
|
|
|
/*
|
|
* $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
|