RTEMS  5.1
umon.h
1 /*
2  * umon.h - RTEMS specific interface to MicroMonitor.
3  *
4  * COPYRIGHT (c) 1989-2009.
5  * On-Line Applications Research Corporation (OAR).
6  *
7  * Modified by Fernando Nicodemos <fgnicodemos@terra.com.br>
8  * from NCB - Sistemas Embarcados Ltda. (Brazil)
9  *
10  * The license and distribution terms for this file may be
11  * found in the file LICENSE in this distribution or at
12  * http://www.rtems.org/license/LICENSE.
13 */
14 
15 #ifndef __rtems_umon_h
16 #define __rtems_umon_h
17 
18 #include <umon/monlib.h>
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
30 void rtems_umon_connect(void);
31 
40 void *rtems_bsp_get_umon_monptr(void);
41 
51 int rtems_initialize_tfs_filesystem(
52  const char *path
53 );
54 
62 int umoncons_poll_read(int minor);
63 
64 #ifdef __cplusplus
65 }
66 #endif
67 
68 #endif /* __rtems_umon_h */
Used by both the monitor and the application that may reside on top of the monitor.