Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 VxWorks API 移植到 linux。在我找到 intArchLib apis 之前它工作正常。如何将 int API (intConnect,intLock ...) 移植到 Linux。
intConnect :此 api 为中断向量 (IRQ) 注册中断例程 (ISR)。当注册中断发生时,将调用该 ISR。
请帮我。
党卫军
没有合理的方法将 intConnect 移植到 Linux。换句话说,intConnect 是 vxWorks 中的一个 API,设备驱动程序不应该直接使用它。应该使用 intConnect 来实现其他高抽象接口。例如,从 vxWorks 6.6 开始,vxbIntConnect 使用 intConnect 实现。