I want know whether the task_params_init function same as the memset function.
If yes, I was know it.
If not, please tell you more detail, how init this task parameter.
I meet a problem, need acquaintance this.
Best Regards,
Roc
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.
I want know whether the task_params_init function same as the memset function.
If yes, I was know it.
If not, please tell you more detail, how init this task parameter.
I meet a problem, need acquaintance this.
Best Regards,
Roc
Task_Params_init() uses memcpy() to initialize your Task_Params structure with the appropriate default values.
An internal static instance of an initialized Task_Params structure is used as the source for the memcpy() function call.
Alan