forked from Imagelibrary/rtems
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:
26
c/src/lib/libbsp/shared/umon/umonrtemsglue.c
Normal file
26
c/src/lib/libbsp/shared/umon/umonrtemsglue.c
Normal 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 */
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user