add CPU timer initialization (refs #402)

There is no actual initialization in x86 now.
The initialization rely on hardware reset and Linux initialization.
This commit is contained in:
NAKAMURA Gou
2016-03-11 18:41:29 +09:00
parent 70e8dd7979
commit 1aac2c8e23
3 changed files with 27 additions and 0 deletions

View File

@ -1517,3 +1517,21 @@ ihk_mc_user_context_t *lookup_user_context(struct thread *thread)
return uctx;
} /* lookup_user_context() */
void init_tick(void)
{
dkprintf("init_tick():\n");
return;
}
void init_delay(void)
{
dkprintf("init_delay():\n");
return;
}
void sync_tick(void)
{
dkprintf("sync_tick():\n");
return;
}