Remove most references to LITE symbol

Most kernel code that depends on the state of the LITE symbol
has this dependency removed, since the symbol was used for an
incomplete feature that could not be enabled. This change has
no operational impact, as the LITE symbol was never defined
by the build system.

In a handful of timer-related references to LITE are not removed,
as they will be useful in adding a tickless kernel capability.

Change-Id: I4ae37f484e3ab08093b732d45aca87d2e8678adf
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
Allan Stephens 2015-04-13 16:07:10 -04:00 committed by Anas Nashif
commit 3a7c6f32fc
10 changed files with 11 additions and 54 deletions

View file

@ -72,11 +72,7 @@ void reset_state_bit(struct k_proc *X, /* ptr to task */
* be added to the list of schedulable tasks.
*/
#ifndef LITE
struct k_tqhd *H = _k_task_priority_list + X->Prio;
#else
struct k_tqhd *H = _k_task_priority_list;
#endif
X->Forw = NULL;
H->Tail->Forw = X;