英文:
Is there any compiler independent POSIX + C Standard method of flushing the instruction cache?
问题
我想要一种类似于GCC中的__builtin___clear_cache
的刷新指令缓存的方法,但不依赖于编译器,是否有符合POSIX + C标准的方法来执行这个操作?
英文:
I would like a method of flushing the instruction cache similar to __builtin___clear_cache
in GCC but for clearing the instruction cache independent of the compiler. Is there any POSIX + C Standard compliant way to do this?
答案1
得分: 3
没有C标准方法来刷新指令缓存。
英文:
There is no C Standard method of flushing the instruction cache.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论