Name KestrelThreads

Helps with debugging, profiling
This commit is contained in:
Ben Adams 2015-12-30 12:51:31 +00:00
parent 0f389f01cb
commit 5c58d48272
1 changed files with 1 additions and 0 deletions

View File

@ -55,6 +55,7 @@ namespace Microsoft.AspNet.Server.Kestrel
_loop = new UvLoopHandle(_log);
_post = new UvAsyncHandle(_log);
_thread = new Thread(ThreadStart);
_thread.Name = "KestrelThread - libuv";
QueueCloseHandle = PostCloseHandle;
}