Revision: 75848
          http://sourceforge.net/p/brlcad/code/75848
Author:   brlcad
Date:     2020-05-20 18:40:17 +0000 (Wed, 20 May 2020)
Log Message:
-----------
with more debugging, the threads are initializing, but the second system() call 
(the client) seems to stall.

Modified Paths:
--------------
    brlcad/trunk/regress/pkg/regress_pkg.cpp

Modified: brlcad/trunk/regress/pkg/regress_pkg.cpp
===================================================================
--- brlcad/trunk/regress/pkg/regress_pkg.cpp    2020-05-20 17:07:44 UTC (rev 
75847)
+++ brlcad/trunk/regress/pkg/regress_pkg.cpp    2020-05-20 18:40:17 UTC (rev 
75848)
@@ -31,15 +31,19 @@
 void
 run_server(cmd_result &r)
 {
+    std::cout << "SERVER thread starting" << std::endl;
     std::string rcmd = std::string("\"") + r.cmd + std::string("\"");
     r.cmd_ret = std::system(rcmd.c_str());
+    std::cout << "SERVER thread ending" << std::endl;
 }
 
 void
 run_client(cmd_result &r)
 {
+    std::cout << "CLIENT thread starting" << std::endl;
     std::string rcmd = std::string("\"") + r.cmd + std::string("\"");
     r.cmd_ret = std::system(rcmd.c_str());
+    std::cout << "CLIENT thread ending" << std::endl;
 }
 
 int

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to