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.

RTOS/PROCESSOR-SDK-TDAX: DUP SYNC and MERGE

Part Number: PROCESSOR-SDK-TDAX

Tool/software: TI-RTOS

When I read the code of DUP

The function DupLink_putEmptyBuffers() was hook on System_LinkObj linkObj 

linkObj.linkPutEmptyBuffers = &DupLink_putEmptyBuffers;

 and is was called by the function System_putLinksEmptyBuffers()

Then System_putLinksEmptyBuffers() was called DupLink_putEmptyBuffers

It like a cycle  【recursion】, 

It make me confuse where is begin??????0