]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
gdbserver: remove handling of the 'L' tracepoint action
authorTankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Tue, 14 Jan 2025 09:10:31 +0000 (10:10 +0100)
committerTankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Tue, 14 Jan 2025 09:27:58 +0000 (10:27 +0100)
commit1956ad8d66b4dcbdda96073be208aeab99af4502
treef20b9a6752d8fe8a73569e364664d99f4c8cdadc
parenta00b56ff1608a0f77635c83e13f5aabb6672b9f1
gdbserver: remove handling of the 'L' tracepoint action

Now that static tracepoint support is removed from gdbserver, it makes
sense to remove handling of the 'L' tracepoint action, too.  The code
that checks received actions already has a default case that tolerates
unrecognized actions:

        default:
          trace_debug ("unknown trace action '%c', ignoring...", *act);

In case 'L' is unexpectedly received, we would at least be able to see
this in the logs.

Approved-By: Simon Marchi <simon.marchi@efficios.com>
gdbserver/tracepoint.cc