mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-26 12:05:04 +01:00
merge common implementations and server implementations
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace SharpCifs.Util.Sharpen
|
||||
{
|
||||
internal class ThreadFactory
|
||||
{
|
||||
public Thread NewThread (IRunnable r)
|
||||
{
|
||||
Thread t = new Thread (r);
|
||||
t.SetDaemon (true);
|
||||
t.Start ();
|
||||
return t;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user