From e98ee8c458f3a8405eb93e71b00f801b4bbe3635 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 18 Sep 2018 14:05:47 -0700 Subject: Add a new 'info proc files' subcommand of 'info proc'. This command displays a list of open file descriptors. gdb/ChangeLog: * defs.h (enum info_proc_what) [IP_FILES]: New value. * infcmd.c (info_proc_cmd_files): New function. (_initialize_infcmd): Register 'info proc files' command. --- gdb/defs.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gdb/defs.h') diff --git a/gdb/defs.h b/gdb/defs.h index fc4217005a1..6e3f4df116f 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -389,6 +389,9 @@ enum info_proc_what /* * Display `info proc cwd'. */ IP_CWD, + /* * Display `info proc files'. */ + IP_FILES, + /* * Display all of the above. */ IP_ALL }; -- cgit v1.2.3-65-gdbad