mailr3236 - /branches/multi_processor/relax


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by garyt on March 19, 2007 - 11:58:
Author: varioustoxins
Date: Mon Mar 19 11:58:24 2007
New Revision: 3236

URL: http://svn.gna.org/viewcvs/relax?rev=3236&view=rev
Log:
marked more threading code for reletion


Modified:
    branches/multi_processor/relax

Modified: branches/multi_processor/relax
URL: 
http://svn.gna.org/viewcvs/relax/branches/multi_processor/relax?rev=3236&r1=3235&r2=3236&view=diff
==============================================================================
--- branches/multi_processor/relax (original)
+++ branches/multi_processor/relax Mon Mar 19 11:58:24 2007
@@ -171,23 +171,25 @@
             # Run the interpreter.
             self.interpreter = Interpreter(self)
             self.interpreter.run()
-
+            print 'exit'
+
+        # FIXME no more threading
         # Threading mode.
-        elif mode == 'thread':
-            # Print the PID prior to IO redirection, and then flush the 
buffer to send it to the parent.
-            print self.pid
-            sys.stdout.flush()
-
-            # Logging (silent IO redirection).
-            if self.log_file:
-                self.IO.log(log_file, print_flag=0)
-
-            # Tee (silent IO redirection).
-            elif self.tee_file:
-                self.IO.tee(tee_file, print_flag=0)
-
-            # Execute the script.
-            self.threading.execute()
+#        elif mode == 'thread':
+#            # Print the PID prior to IO redirection, and then flush the 
buffer to send it to the parent.
+#            print self.pid
+#            sys.stdout.flush()
+#
+#            # Logging (silent IO redirection).
+#            if self.log_file:
+#                self.IO.log(log_file, print_flag=0)
+#
+#            # Tee (silent IO redirection).
+#            elif self.tee_file:
+#                self.IO.tee(tee_file, print_flag=0)
+#
+#            # Execute the script.
+#            self.threading.execute()
 
         # Execute the relax test suite
         elif mode == 'test suite':
@@ -553,8 +555,8 @@
     module_path = '.'.join(('multi',processor_name))
 
 
-    modules = import_module(module_path,verbose=True)
-    print modules
+    modules = import_module(module_path)
+    #print modules
     if hasattr(modules[-1],class_name):
         clazz =  getattr(modules[-1], class_name)
     else:




Related Messages


Powered by MHonArc, Updated Mon Mar 19 16:20:06 2007