Adapt tools support code to reflect its context monitoring nature

Revises code that was previously conditional on HOST_TOOLS_SUPPORT
but is now conditional on CONTEXT_MONITOR.

Change-Id: I78a9126c5a66128f5aafe6b4220b3c7c68e01335
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
Allan Stephens 2015-04-23 15:15:05 -04:00 committed by Anas Nashif
commit ab03ec2a62
2 changed files with 10 additions and 10 deletions

View file

@ -45,9 +45,9 @@ architecture.
tNANO _NanoKernel = {0};
#if defined(CONFIG_CONTEXT_MONITOR)
#define TOOLS_SUPPORT_INIT(pCcs) toolsSupportInit(pCcs)
#define CONTEXT_MONITOR_INIT(pCcs) _context_monitor_init(pCcs)
#else
#define TOOLS_SUPPORT_INIT(pCcs) \
#define CONTEXT_MONITOR_INIT(pCcs) \
do {/* do nothing */ \
} while ((0))
#endif
@ -55,14 +55,14 @@ tNANO _NanoKernel = {0};
#if defined(CONFIG_CONTEXT_MONITOR)
/*******************************************************************************
*
* toolsSupportInit - initialize host-tools support when needed
* _context_monitor_init - initialize context monitoring support
*
* Currently only inserts the new context in the list of active contexts.
*
* RETURNS: N/A
*/
static ALWAYS_INLINE void toolsSupportInit(struct s_CCS *pCcs /* context */
static ALWAYS_INLINE void _context_monitor_init(struct s_CCS *pCcs /* context */
)
{
unsigned int key;
@ -145,7 +145,7 @@ void *_NewContext(
/* initial values in all other registers/CCS entries are irrelevant */
TOOLS_SUPPORT_INIT(pCcs);
CONTEXT_MONITOR_INIT(pCcs);
return pCcs;
}