GDBMI_gdb_set.st
changeset 222 2c06fc7c39f5
parent 91 472a4841a8b6
child 259 651864c2aa29
--- a/GDBMI_gdb_set.st	Tue Mar 09 11:27:22 2021 +0000
+++ b/GDBMI_gdb_set.st	Wed Mar 10 13:49:55 2021 +0000
@@ -1,6 +1,7 @@
 "
 jv:libgdbs - GNU Debugger Interface Library
 Copyright (C) 2015-now Jan Vrany
+Copyright (C) 2021 LabWare
 
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
@@ -33,6 +34,7 @@
 "
 jv:libgdbs - GNU Debugger Interface Library
 Copyright (C) 2015-now Jan Vrany
+Copyright (C) 2021 LabWare
 
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
@@ -85,3 +87,17 @@
 	^ 'gdb-set'
 ! !
 
+!GDBMI_gdb_set methodsFor:'hooks'!
+
+postExecuteIn: debugger result: result 
+    result isDone ifTrue: [
+        | event |
+
+        event := GDBCmdParamChangedEvent name: arguments first
+                value: arguments second.
+        debugger push: event.
+    ].
+
+    "Created: / 09-03-2021 / 10:46:28 / Jan Vrany <jan.vrany@labware.com>"
+! !
+