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:
parent
3b066d4cf5
commit
528233e4b0
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue