Skip to content

Commit b7258c3

Browse files
committed
Give ThreadQueue threads an identifiable name to make understanding thread profiler easier
1 parent 9894eac commit b7258c3

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

DaySim.Framework/Persistence/ThreadQueue.cs

+9-12
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,16 @@ public sealed class ThreadQueue {
1515
private readonly Queue<ISavable> _queue = new Queue<ISavable>();
1616
private Thread _thread;
1717
private bool _shutdown;
18+
19+
public ThreadQueue(string threadQueueThreadName) {
20+
if (_thread != null) {
21+
throw new Exception("ThreadQueue already running.");
22+
}
1823

19-
public ThreadQueue() {
20-
Start();
21-
}
24+
_thread = new Thread(BeginSave);
25+
_thread.Name = threadQueueThreadName;
26+
_thread.Start();
27+
}
2228

2329
public bool IsRunning {
2430
get { return _thread != null; }
@@ -44,15 +50,6 @@ public void Shutdown() {
4450
}
4551
}
4652

47-
public void Start() {
48-
if (_thread != null) {
49-
throw new Exception("ThreadQueue already running.");
50-
}
51-
52-
_thread = new Thread(BeginSave);
53-
_thread.Start();
54-
}
55-
5653
public void Stop() {
5754
if (_thread == null) {
5855
throw (new Exception("ThreadQueue already stopped."));

DaySim/ChoiceModels/ChoiceModelFactory.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
using System.Collections.Generic;
2020
using System.Globalization;
2121
using System.Linq;
22+
using System.Threading;
2223

2324
namespace DaySim.ChoiceModels {
2425
public static class ChoiceModelFactory {
@@ -256,7 +257,8 @@ public static void Initialize(string name, bool loadData = true) {
256257
_type = helper.ChoiceModelRunner.GetChoiceModelRunnerType();
257258

258259
if (!Global.Configuration.IsInEstimationMode || Global.Configuration.ShouldOutputStandardFilesInEstimationMode) {
259-
ThreadQueue = new ThreadQueue();
260+
string threadQueueThreadName = Thread.CurrentThread.Name + "_" + _type.ToString();
261+
ThreadQueue = new ThreadQueue(threadQueueThreadName);
260262
}
261263

262264
//ExporterFactory = Global.Kernel.GetInstance<ExporterFactory>();

0 commit comments

Comments
 (0)