aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/scripts/threads.py
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-03-09 04:58:11 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-03-09 04:58:11 +0000
commite854889b99b9e515dc69d237b1031b5705e83b60 (patch)
tree6b525184d850f15012e316ca51cf0a11563261ea /externals/grill/py/scripts/threads.py
parent9ccbbc943fa25426542b4fb6d6bc280c3281001b (diff)
fixes for detached operation and single-threaded version
use lock count instead of message queuing to avoid py->py messaging deadlock support for buffer objects (preliminary) updated build system little restructuring fixes for single-threaded compilation added support for numarray svn path=/trunk/; revision=2610
Diffstat (limited to 'externals/grill/py/scripts/threads.py')
-rw-r--r--externals/grill/py/scripts/threads.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/externals/grill/py/scripts/threads.py b/externals/grill/py/scripts/threads.py
index e1a91351..b0299101 100644
--- a/externals/grill/py/scripts/threads.py
+++ b/externals/grill/py/scripts/threads.py
@@ -39,7 +39,9 @@ class ex1(pyext._class):
def bang_(self,n):
for i in xrange(self.loops):
# if _shouldexit is true, the thread ought to stop
- if self._shouldexit: break
+ if self._shouldexit:
+ print "BREAK"
+ break
self._outlet(n,i)
sleep(self.sltime)