source: rtems/c/src/libmisc/monitor/monitor.h @ ac7d5ef0

4.104.114.84.95
Last change on this file since ac7d5ef0 was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 618 bytes
Line 
1/*
2 *      @(#)monitor.h   1.2 - 95/04/24
3 *     
4 */
5
6/*
7 *  File:       monitor.h
8 *
9 *  Description:
10 *    The RTEMS monitor task include file.
11 *
12 *
13 *
14 *  TODO:
15 *
16 */
17
18#ifndef __MONITOR_H
19#define __MONITOR_H
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25void    rtems_monitor_init(rtems_boolean monitor_suspend);
26void    rtems_monitor_wakeup(void);
27void    rtems_monitor_task(rtems_task_argument monitor_suspend);
28void    rtems_monitor_symbols_loadup(void);
29
30extern rtems_unsigned32        rtems_monitor_task_id;
31
32extern rtems_symbol_table_t *rtems_monitor_symbols;
33
34#ifdef __cplusplus
35}
36#endif
37
38#endif  /* ! __MONITOR_H */
Note: See TracBrowser for help on using the repository browser.