Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
假设有一个从核函数func,主核程序中一般通过extern SLAVE_FUN(func)();引用该函数,然后通过athread_spawn(func, 0);调用该函数 现在的问题是,如果改用满核组快速工作模式的函数athread_spawn64(func, 0);调用该函数时,编译就会报错,说func函数没有被定义 请问这种情况如何解决?
试试:
athread_spawn64(SLAVE_FUN(func), 0);