Author: tack
Date: Sun Jan 20 14:06:49 2008
New Revision: 10301

Log:
lock kwarg was renamed to synchronize


Modified:
   trunk/core/src/ipc/tvserver.py
   trunk/core/src/resources.py
   trunk/tvserver/src/recorder.py

Modified: trunk/core/src/ipc/tvserver.py
==============================================================================
--- trunk/core/src/ipc/tvserver.py      (original)
+++ trunk/core/src/ipc/tvserver.py      Sun Jan 20 14:06:49 2008
@@ -185,7 +185,7 @@
         return True
 
 
-    @kaa.yield_execution(lock=True)
+    @kaa.yield_execution(synchronize = True)
     def _request_description(self):
         if not self.server:
             self.updating = 0

Modified: trunk/core/src/resources.py
==============================================================================
--- trunk/core/src/resources.py (original)
+++ trunk/core/src/resources.py Sun Jan 20 14:06:49 2008
@@ -40,7 +40,7 @@
     """
     __resources = {}
 
-    @kaa.yield_execution(lock=True)
+    @kaa.yield_execution(synchronize = True)
     def get_resources(self, *resources, **kwargs):
         """
         Reserve a list of resources. If one or more resources can not be

Modified: trunk/tvserver/src/recorder.py
==============================================================================
--- trunk/tvserver/src/recorder.py      (original)
+++ trunk/tvserver/src/recorder.py      Sun Jan 20 14:06:49 2008
@@ -404,7 +404,7 @@
         self.check_timer.start(0.1)
 
 
-    @kaa.yield_execution(lock=True)
+    @kaa.yield_execution(synchronize = True)
     def check_recordings(self):
         """
         Check the internal list of recordings and add or remove them from

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to