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.
最近在学习CC3200这款芯片的SDK中遇到了这样的问题:
void CameraService(void *pvParameters)
{
StartCamera();
osi_TaskDelete(&g_CameraTaskHandle);
}
这个函数中osi_TaskDelete(&g_CameraTaskHandle),g_CameraTaskHandle是一个指向viod的指针,那么这句话的左右是什么,具体是怎么实现的这个过程