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.
当我使用gdb调试程序时,我想查看有关调试进度的文件描述符信息。我使用“info file”、“info proc”命令,但这些命令输出不包含文件描述符信息。那么在使用gdb的时候有没有命令输出文件描述符信息呢?先谢谢了!
使用gdb时有没有命令输出文件描述符信息?
这取决于操作系统。
在 Linux 上,ls -l /proc/$pid/fd/通常很有帮助。
ls -l /proc/$pid/fd/
GDB 本身不跟踪劣等进程的文件描述符。