commit | 8777ff1304fd7c07f35a7aca655b92d0e98a277b | [log] [tgz] |
---|---|---|
author | Kumar Gala <kumar.gala@linaro.org> | Wed Jul 25 20:24:34 2018 -0500 |
committer | Anas Nashif <anas.nashif@intel.com> | Wed Jul 25 23:38:13 2018 -0400 |
tree | 7edb11fcd9c7e11f4283b3391ba1a931d5499661 | |
parent | 97c06a7ab35772ef3cd6de8a39688bbd0a4dcf3c [diff] |
Fix compile errors related to errno.h Because errno.h is defined in terms of a syscall we can get into trouble when one syscall/<FOO.h> ends up include another syscall/<BAR.h>. Moving errno.h from kernel_includes.h to kernel.h breaks the possible inclusion issue on some ARM platforms (which arm_mpu.h ends up include soc.h which ends up include kernel_includes.h which would include errno.h). Signed-off-by: Kumar Gala <kumar.gala@linaro.org>