thread.c: remove vestigial CONFIG_INIT_STACKS cruft

It looks like, at some point in the past, initializing thread stacks
was the responsibility of the arch layer. After that was centralized,
we forgot to remove the related conditional header inclusion. Fixed.

Signed-off-by: Charles E. Youse <charles.youse@intel.com>
This commit is contained in:
Charles E. Youse 2019-07-30 15:55:41 -07:00 committed by Ioannis Glaropoulos
commit 8e437adc42
4 changed files with 0 additions and 14 deletions

View file

@ -13,10 +13,6 @@
* architecture
*/
#ifdef CONFIG_INIT_STACKS
#include <string.h>
#endif /* CONFIG_INIT_STACKS */
#include <toolchain.h>
#include <kernel_structs.h>
#include <wait_q.h>