Thu, 24 Jan 2019 21:59:23 +0000 Update target features from `=target-connected event`
Jan Vrany <jan.vrany@fit.cvut.cz> [Thu, 24 Jan 2019 21:59:23 +0000] rev 172
Update target features from `=target-connected event` ...so feature list is up-to-date
Wed, 23 Jan 2019 22:20:29 +0000 Fix DNU in `GDBMITraceViewer` when debugger terminates
Jan Vrany <jan.vrany@fit.cvut.cz> [Wed, 23 Jan 2019 22:20:29 +0000] rev 171
Fix DNU in `GDBMITraceViewer` when debugger terminates
Wed, 23 Jan 2019 21:38:06 +0000 Add `GDBDebugger >> #waitForAllEventsProcessed` and `#waitForAllCommandsProcessed`
Jan Vrany <jan.vrany@fit.cvut.cz> [Wed, 23 Jan 2019 21:38:06 +0000] rev 170
Add `GDBDebugger >> #waitForAllEventsProcessed` and `#waitForAllCommandsProcessed` These methods are meant mainly for synchronization in tests, NOT for normal user code. Uses should avoid calling these.
Sat, 19 Jan 2019 23:25:55 +0000 API: add `GDBDebugger >> getParameter:` and `setParameter:to:`
Jan Vrany <jan.vrany@fit.cvut.cz> [Sat, 19 Jan 2019 23:25:55 +0000] rev 169
API: add `GDBDebugger >> getParameter:` and `setParameter:to:` ...to get / set GDB internal parameters such as prompt. The only complication here is that when a parameter is set by MI `-gdb-set` command, the `=cmd-param-changed' notification is not sent. This may or may not be a GDB bug. To make this transparent to `libgdbs` clients, intercept all `-gdb-set` commands and when sucessful, emit the event manually. This way, client may rely on value change notification (`GDBCmdParamChangedEvent`) to detect changes.
Wed, 16 Jan 2019 23:42:24 +0000 Fix synchronization issue in `GDBThreadGroup >> onThreadSelectedEvent:`
Jan Vrany <jan.vrany@fit.cvut.cz> [Wed, 16 Jan 2019 23:42:24 +0000] rev 168
Fix synchronization issue in `GDBThreadGroup >> onThreadSelectedEvent:` ...which may be invoked when thread is actually still / already running. This check is bit ugly and strictly speaking not correct (meaning race-free). For now, it would do. We need to think on how to deal with that better on a general level.
Wed, 16 Jan 2019 23:38:20 +0000 Use inferior PTY only if supported
Jan Vrany <jan.vrany@fit.cvut.cz> [Wed, 16 Jan 2019 23:38:20 +0000] rev 167
Use inferior PTY only if supported ...i.e., when running GDB locally on UNIX-like systems. Note, that the fact that `libgdbs` is running on UNIX-like system does not necessarily mean PTYs can be used - GDB still can run on remote machine via SSH.
Tue, 01 Jan 2019 23:44:26 +0000 Add class for new MI command `-complete`
Jan Vrany <jan.vrany@fit.cvut.cz> [Tue, 01 Jan 2019 23:44:26 +0000] rev 166
Add class for new MI command `-complete`
Sat, 29 Dec 2018 23:32:34 +0000 Add new API `GDBDebugger >> #hasCommand:` to test support for particular MI command
Jan Vrany <jan.vrany@fit.cvut.cz> [Sat, 29 Dec 2018 23:32:34 +0000] rev 165
Add new API `GDBDebugger >> #hasCommand:` to test support for particular MI command Internally this uses GDB's `-info-gdb-mi-command`. Results are cached to avoid uneccessary round-trips upon repeated calls.
Thu, 13 Dec 2018 14:53:48 +0000 Add support for arbitrary (shell) command to launch GDB.
Jan Vrany <jan.vrany@fit.cvut.cz> [Thu, 13 Dec 2018 14:53:48 +0000] rev 164
Add support for arbitrary (shell) command to launch GDB. Until now it was only possible to specify GDB executable. In some cases however it is useful to be able to specify whole command including parameters - passing --data-directory or tunneling GDB through SSH, for example. To support this, a new setting, #gdbCommand: has been introduced making old gdbExecutable: obsolete. The specified command is NOT passed to shell, however. Instead, it's parsed the same way shell (or `cmd.exe` on Windows) would do it and then passed to `exec()` (`CreateProcessEx` on Windows). This is to avoid shell inkering with input/output stream - we need to handle them ourselves.
Wed, 12 Dec 2018 16:32:44 +0000 Renamed `GDBStXWindowsProcess` to `GDBStXSimpleProcess`
Jan Vrany <jan.vrany@fit.cvut.cz> [Wed, 12 Dec 2018 16:32:44 +0000] rev 163
Renamed `GDBStXWindowsProcess` to `GDBStXSimpleProcess` ...as it may be used in more scenarios than on Windows. For example, it can be used to spawn gdb remotely using SSH (handy in cases there's no gdbserver implementation for remote machine)
(0) -100 -10 +10 +100 tip