This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

the task stack

Other Parts Discussed in Thread: SYSBIOS

in the SYSBIOS userguide, it said programmer could control the location of the stactically-create task stack. i want to know whether the task stack location could be control by settnig the taskParams.stack option when the task is created dynamically?  my sysbios version is 6.35.1.29. thanks!

  • Hello,

    When using a dynamic Task_create(), you can set taskParams.stack to a buffer that you provide (either a global buffer or allocated buffer). By default taskParams.stack's value is NULL which tells SYS/BIOS to allocate one for you from a heap.

    Whitney