summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/monitor/monitor.h
blob: 195aa7369557dbbc1893f25ec3d3c7878134a170 (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
31
32
33
34
35
36
37
38
/*
 *      @(#)monitor.h	1.2 - 95/04/24
 *      
 */

/*
 *  File:	monitor.h
 *
 *  Description:
 *    The RTEMS monitor task include file.
 *
 *
 *
 *  TODO:
 *
 */

#ifndef __MONITOR_H
#define __MONITOR_H

#ifdef __cplusplus
extern "C" {
#endif

void    rtems_monitor_init(rtems_boolean monitor_suspend);
void    rtems_monitor_wakeup(void);
void    rtems_monitor_task(rtems_task_argument monitor_suspend);
void    rtems_monitor_symbols_loadup(void);

extern rtems_unsigned32        rtems_monitor_task_id;

extern rtems_symbol_table_t *rtems_monitor_symbols;

#ifdef __cplusplus
}
#endif

#endif  /* ! __MONITOR_H */