summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/rtmonuse/rtmonuse.h
blob: 27fb7c1c8a75d5a044df32e56214a1d5689fd856 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
 * @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