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.
如何中断正在运行的 C 代码,以在目录中创建文件的哈希?
所以在 C 代码中的某个点,我输入了一些代码来创建文件的 md5 哈希,例如 thisfile.txt?
您问题的两个部分似乎无关。 如果你想中断正在运行的 C 代码,你应该使用信号。请参考http://beej.us/guide/bgipc/output/html/multipage/signals.html 如果您想创建 md5,请使用现成的 MD5 API。 我不明白需要生成中断来计算哈希。谢谢