Fixed 64KB stack size limit.

This commit is contained in:
weety 2016-05-31 20:39:33 +08:00
parent 94e1935f1f
commit 62e770f9de
3 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ enum
struct pthread_attr
{
void* stack_base;
rt_uint16_t stack_size; /* stack size of thread */
rt_uint32_t stack_size; /* stack size of thread */
rt_uint8_t priority; /* priority of thread */
rt_uint8_t detachstate; /* detach state */

View File

@ -496,7 +496,7 @@ struct rt_thread
void *entry; /**< entry */
void *parameter; /**< parameter */
void *stack_addr; /**< stack address */
rt_uint16_t stack_size; /**< stack size */
rt_uint32_t stack_size; /**< stack size */
/* error code */
rt_err_t error; /**< error code */

View File

@ -98,7 +98,7 @@ static rt_err_t _rt_thread_init(struct rt_thread *thread,
/* stack init */
thread->stack_addr = stack_start;
thread->stack_size = (rt_uint16_t)stack_size;
thread->stack_size = stack_size;
/* init thread stack */
rt_memset(thread->stack_addr, '#', thread->stack_size);