RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
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
21extern "C" {
22#endif
23
30void rtems_umon_connect(void);
31
40void *rtems_bsp_get_umon_monptr(void);
41
51int rtems_initialize_tfs_filesystem(
52 const char *path
53);
54
62int 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.