Author: ArcRiley Date: 2008-02-19 09:53:48 -0500 (Tue, 19 Feb 2008) New Revision: 942
Modified: trunk/pysoy/src/_internals/LoopThread.pxi Log: #931 : removed a few printf debug lines Modified: trunk/pysoy/src/_internals/LoopThread.pxi =================================================================== --- trunk/pysoy/src/_internals/LoopThread.pxi 2008-02-19 14:52:18 UTC (rev 941) +++ trunk/pysoy/src/_internals/LoopThread.pxi 2008-02-19 14:53:48 UTC (rev 942) @@ -30,7 +30,6 @@ def __cinit__(self, name) : assert type(name)==str, 'name must be a string' - stdio.printf('init thread\n') self._name = name self._size = 1 self._current = 0 @@ -46,7 +45,6 @@ self._active_limbo_lock.acquire() self._active[self._threadID] = self self._active_limbo_lock.release() - stdio.printf('done init\n') def __dealloc__(self) : self._running = 0 @@ -83,7 +81,6 @@ cdef void _loop(self) : cdef int _i, _t, _most # - stdio.printf('started loop\n') py.PyThread_acquire_lock(self._loopLock, 1) while self._running : py.PyThread_acquire_lock(self._listLock, 1) @@ -93,10 +90,8 @@ if _t < _most : _most = _t py.PyThread_release_lock(self._listLock) - stdio.printf('looping...\n') _sleep(_most) py.PyThread_release_lock(self._loopLock) - stdio.printf('closed loop\n') cdef void _append(self, void* _child) : py.PyThread_acquire_lock(self._listLock, 1) _______________________________________________ PySoy-SVN mailing list PySoy-SVN@pysoy.org http://www.pysoy.org/mailman/listinfo/pysoy-svn