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.
我知道它可能会调用一个或多个系统调用来在 Linux 中实现 POSIX API,但是如何找出将为特定的 POSIX API(例如memcpy或任何其他 POSIX API)调用哪些系统调用?
memcpy
您可以使用strace工具来跟踪 Linux 可执行文件进行的系统调用。
您还可以检查C 库源代码。