aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/pCampBot/BotManager.cs
diff options
context:
space:
mode:
authorTedd Hansen2008-02-19 12:02:53 +0000
committerTedd Hansen2008-02-19 12:02:53 +0000
commit47c909ca0af6e39a55b38db74df49c7629b552b9 (patch)
treeaba1d85ff2f447b69d02de84950ecd39baef0438 /OpenSim/Tools/pCampBot/BotManager.cs
parent*rawfile fix. (diff)
downloadopensim-SC_OLD-47c909ca0af6e39a55b38db74df49c7629b552b9.zip
opensim-SC_OLD-47c909ca0af6e39a55b38db74df49c7629b552b9.tar.gz
opensim-SC_OLD-47c909ca0af6e39a55b38db74df49c7629b552b9.tar.bz2
opensim-SC_OLD-47c909ca0af6e39a55b38db74df49c7629b552b9.tar.xz
Playing "Name that thread". Adding names and isbackground=true to all threads so it will be easier to debug.
Diffstat (limited to 'OpenSim/Tools/pCampBot/BotManager.cs')
-rw-r--r--OpenSim/Tools/pCampBot/BotManager.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs
index 0c7fa4e..1dc1dc1 100644
--- a/OpenSim/Tools/pCampBot/BotManager.cs
+++ b/OpenSim/Tools/pCampBot/BotManager.cs
@@ -114,6 +114,8 @@ namespace pCampBot
114 if (cs.GetString("lastname", "random") == "random") pb.lastname = CreateRandomName(); 114 if (cs.GetString("lastname", "random") == "random") pb.lastname = CreateRandomName();
115 115
116 m_td[pos] = new Thread(pb.startup); 116 m_td[pos] = new Thread(pb.startup);
117 m_td[pos].Name = "CampBot_" + pos;
118 m_td[pos].IsBackground = true;
117 m_td[pos].Start(); 119 m_td[pos].Start();
118 m_lBot.Add(pb); 120 m_lBot.Add(pb);
119 } 121 }