summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/umon/umonrtemsglue.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/shared/umon/umonrtemsglue.c')
-rw-r--r--c/src/lib/libbsp/shared/umon/umonrtemsglue.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/shared/umon/umonrtemsglue.c b/c/src/lib/libbsp/shared/umon/umonrtemsglue.c
new file mode 100644
index 0000000000..0e1e5dc78b
--- /dev/null
+++ b/c/src/lib/libbsp/shared/umon/umonrtemsglue.c
@@ -0,0 +1,26 @@
+/*
+ * COPYRIGHT (c) 1989-2009.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#include <umon/monlib.h>
+
+/* XXX eventually add lock/unlock methods */
+
+void rtems_umon_connect(void)
+{
+ void *moncomptr;
+
+ moncomptr = rtems_bsp_get_umon_monptr();
+ monConnect(
+ (int(*)())(*(unsigned long *)moncomptr), /* monitor base */
+ (void *)0, /* lock */
+ (void *)0 /* unlock */
+ );
+}