zephyr/arch/nios2
Andrew Boie c5c104f91e kernel: fix k_thread_stack_t definition
Currently this is defined as a k_thread_stack_t pointer.
However this isn't correct, stacks are defined as arrays. Extern
references to k_thread_stack_t doesn't work properly as the compiler
treats it as a pointer to the stack array and not the array itself.

Declaring as an unsized array of k_thread_stack_t doesn't work
well either. The least amount of confusion is to leave out the
pointer/array status completely, use pointers for function prototypes,
and define K_THREAD_STACK_EXTERN() to properly create an extern
reference.

The definitions for all functions and struct that use
k_thread_stack_t need to be updated, but code that uses them should
be unchanged.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
2017-10-17 08:24:29 -07:00
..
core kernel: fix k_thread_stack_t definition 2017-10-17 08:24:29 -07:00
include kernel: introduce opaque data type for stacks 2017-08-01 16:43:15 -07:00
soc license: Replace Apache boilerplate with SPDX tag 2017-01-19 03:50:58 +00:00
Kbuild
Kconfig nios2: use gen_isr_tables mechanism 2017-02-11 01:28:00 +00:00
Makefile build: move qemu definitions to boards 2017-01-10 20:20:47 +00:00
defconfig