PIC32 port task creating issue

my program made 256 tasks after: xLCDQueue = xStartLCDTask();
I viewed it under FreeRTOS view in MpLab.
reference: 1 ~ 256
Name: all the same as "t^L"
priority: all the same as "-1610611860"
state: all the same as "ready"
TCB ID: all the same as "0xA000034C"
Blocking event: all blank
Stack(Start/TOP)(USED): all the same as "(0xA0000374/0x
A0000344)(-47)
Why is that?

PIC32 port task creating issue

Are you saying you tried to create 256 tasks? If so then you will definitely run out of RAM. Check the return value of xTaskCreate().

PIC32 port task creating issue

I restart the Mplab, now it is ok. Thanks.