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.

how to added "pthread" in the "Libraries"

I am using CCS4 with c55x, and the include does not have pthread.h. I want to add this header file. How could I do this?


Jingrui

  • Adding the header wouldn't do you much good, without also creating run-time support for multiple threads (not only the pthread library functions, but also a thread scheduler, etc.), which would be a large amount of work that would be hard to get right without help from the compiler implementers.  If you can adapt your application to use multiple tasks instead of multiple threads, then you can get task support using DSP/BIOS (aka SYS/BIOS).