|
|
@@ -443,7 +443,11 @@ namespace PRSServer
|
|
|
m_clientListenerThread.Join(1000);
|
|
|
|
|
|
// If still alive; Get rid of the thread.
|
|
|
- if (m_clientListenerThread.IsAlive) m_clientListenerThread.Abort();
|
|
|
+ if (m_clientListenerThread.IsAlive)
|
|
|
+ {
|
|
|
+ Logger.Send(LogType.Error, "", "Thread didn't die in time.");
|
|
|
+ }
|
|
|
+ //m_clientListenerThread.Abort();
|
|
|
m_clientListenerThread = null;
|
|
|
m_clientSocket = null;
|
|
|
m_markedForDeletion = true;
|