diff options
author | Gary Benson <gbenson@redhat.com> | 2015-03-18 11:19:02 +0000 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2015-03-18 11:19:02 +0000 |
commit | 464b0089f0068838a014a8fa27ea2eef536ebada (patch) | |
tree | f59a44eb419f46836d9bdbf88cd4a2c488291afd /gdb/ChangeLog | |
parent | f68f11b76de09dcb0d399814127fbf5227fe8245 (diff) | |
download | gdb-464b0089f0068838a014a8fa27ea2eef536ebada.zip gdb-464b0089f0068838a014a8fa27ea2eef536ebada.tar.gz gdb-464b0089f0068838a014a8fa27ea2eef536ebada.tar.bz2 |
Reimplement "vFile:fstat" without qSupported
This commit makes support for the "vFile:fstat" packet be detected
by probing rather than using qSupported, for consistency with the
other vFile: packets.
gdb/ChangeLog:
(remote_protocol_features): Remove the "vFile:fstat" feature.
(remote_hostio_fstat): Probe for "vFile:fstat" support.
gdb/doc/ChangeLog:
* gdb.texinfo (General Query Packets): Remove documentation
for now-removed vFile:fstat qSupported features.
gdb/gdbserver/ChangeLog:
* server.c (handle_query): Do not report vFile:fstat as supported.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9578a9e..222922f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2015-03-18 Gary Benson <gbenson@redhat.com> + + (remote_protocol_features): Remove the "vFile:fstat" feature. + (remote_hostio_fstat): Probe for "vFile:fstat" support. + 2015-03-11 Yao Qi <yao.qi@linaro.org> PR tdep/18107 |