aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2018-09-18 14:05:47 -0700
committerJohn Baldwin <jhb@FreeBSD.org>2018-09-18 14:05:47 -0700
commite98ee8c458f3a8405eb93e71b00f801b4bbe3635 (patch)
tree7ed0b2326d25d74bf06518e62a33274b3a798263 /gdb/defs.h
parentImport gnulib's inet_ntop module. (diff)
downloadbinutils-gdb-e98ee8c458f3a8405eb93e71b00f801b4bbe3635.tar.gz
binutils-gdb-e98ee8c458f3a8405eb93e71b00f801b4bbe3635.tar.bz2
binutils-gdb-e98ee8c458f3a8405eb93e71b00f801b4bbe3635.zip
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.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r--gdb/defs.h3
1 files changed, 3 insertions, 0 deletions
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
};