2009-06-12 Joel Sherrill <joel.sherrill@OARcorp.com>

* umon/README, umon/cli.h, umon/monlib.c, umon/monlib.h, umon/tfs.h,
	umon/tfsDriver.c, umon/umonrtemsglue.c: New files.
This commit is contained in:
Joel Sherrill
2009-06-12 17:20:42 +00:00
parent c0ae2676b5
commit ba6f12b7e4
8 changed files with 2504 additions and 0 deletions

View File

@@ -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 */
);
}