GDBThreadState.st
changeset 50 61e8a7c86f38
parent 37 a85f0c91f164
child 51 2fa20404923c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GDBThreadState.st	Tue Sep 30 20:13:27 2014 +0100
@@ -0,0 +1,29 @@
+"{ Package: 'jv:libgdbs' }"
+
+Object subclass:#GDBThreadState
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'GDB-Core'
+!
+
+!GDBThreadState methodsFor:'testing'!
+
+isRunning
+    ^ false
+
+    "Created: / 07-09-2014 / 23:22:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+isStopped
+    ^ false
+
+    "Created: / 07-09-2014 / 23:22:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+isTerminated
+    ^ false
+
+    "Created: / 07-09-2014 / 23:22:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+