Rename "activeLink" field of CCS to "next_context"

Modifies the name of this field to make its purpose clearer,
and to align with coding conventions.

Change-Id: I8de78df1a0459122067d650130e01078afb5af8a
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
Allan Stephens 2015-04-23 13:12:24 -04:00 committed by Anas Nashif
commit b32f81dbe4
8 changed files with 11 additions and 11 deletions

View file

@ -75,7 +75,7 @@ static ALWAYS_INLINE void _context_monitor_init(struct s_CCS *pCcs /* context */
*/
key = irq_lock();
pCcs->activeLink = _NanoKernel.contexts;
pCcs->next_context = _NanoKernel.contexts;
_NanoKernel.contexts = pCcs;
irq_unlock(key);
}