kernel: Fix typo in macro name
Fixes a typo in the macro ARCH_DYMANIC_OBJ_K_THREAD_ALIGNMENT so that DYMANIC becomes DYNAMIC. Signed-off-by: Peter Mitsis <peter.mitsis@intel.com>
This commit is contained in:
parent
77a7615eb2
commit
48f516469a
3 changed files with 8 additions and 8 deletions
|
@ -435,13 +435,13 @@ extern struct task_state_segment _main_tss;
|
|||
*/
|
||||
#if defined(CONFIG_EAGER_FPU_SHARING) || defined(CONFIG_LAZY_FPU_SHARING)
|
||||
#ifdef CONFIG_SSE
|
||||
#define ARCH_DYMANIC_OBJ_K_THREAD_ALIGNMENT 16
|
||||
#define ARCH_DYNAMIC_OBJ_K_THREAD_ALIGNMENT 16
|
||||
#else
|
||||
#define ARCH_DYMANIC_OBJ_K_THREAD_ALIGNMENT (sizeof(void *))
|
||||
#define ARCH_DYNAMIC_OBJ_K_THREAD_ALIGNMENT (sizeof(void *))
|
||||
#endif
|
||||
#else
|
||||
/* No special alignment requirements, simply align on pointer size. */
|
||||
#define ARCH_DYMANIC_OBJ_K_THREAD_ALIGNMENT (sizeof(void *))
|
||||
#define ARCH_DYNAMIC_OBJ_K_THREAD_ALIGNMENT (sizeof(void *))
|
||||
#endif /* CONFIG_*_FP_SHARING */
|
||||
|
||||
|
||||
|
|
|
@ -147,6 +147,6 @@ struct x86_ssf {
|
|||
/*
|
||||
* Thread object needs to be 16-byte aligned.
|
||||
*/
|
||||
#define ARCH_DYMANIC_OBJ_K_THREAD_ALIGNMENT 16
|
||||
#define ARCH_DYNAMIC_OBJ_K_THREAD_ALIGNMENT 16
|
||||
|
||||
#endif /* ZEPHYR_INCLUDE_ARCH_X86_INTEL64_ARCH_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue