kernel: use size_t for thread stack sizes

We should use size_t for memory region sizes everywhere, not
u32_t.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2019-12-11 14:54:15 -08:00 committed by Andrew Boie
commit 528233e4b0

View file

@ -516,7 +516,7 @@ struct _thread_stack_info {
* the size of the actual area, starting from the start member,
* that should be writable by the thread
*/
u32_t size;
size_t size;
};
typedef struct _thread_stack_info _thread_stack_info_t;