mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merged up to HEAD.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3129 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -53,6 +53,10 @@ public class Win32NetBIOSSessionSocketHandler extends SessionSocketHandler imple
|
||||
|
||||
// Constants
|
||||
//
|
||||
|
||||
// Session Thread group
|
||||
private static final ThreadGroup THREAD_GROUP_SESSION = new ThreadGroup("W32NETBIOS_SESSION_GROUP");
|
||||
|
||||
// Default LANA offline polling interval
|
||||
|
||||
public static final long LANAPollingInterval = 5000; // 5 seconds
|
||||
@@ -605,7 +609,7 @@ public class Win32NetBIOSSessionSocketHandler extends SessionSocketHandler imple
|
||||
|
||||
// Start the new session in a seperate thread
|
||||
|
||||
Thread srvThread = new Thread(srvSess);
|
||||
Thread srvThread = new Thread(THREAD_GROUP_SESSION, srvSess);
|
||||
srvThread.setDaemon(true);
|
||||
srvThread.setName("Sess_W" + srvSess.getSessionId() + "_LSN" + lsn);
|
||||
srvThread.start();
|
||||
@@ -750,7 +754,7 @@ public class Win32NetBIOSSessionSocketHandler extends SessionSocketHandler imple
|
||||
|
||||
// Start the new session in a seperate thread
|
||||
|
||||
Thread srvThread = new Thread(srvSess);
|
||||
Thread srvThread = new Thread(THREAD_GROUP_SESSION, srvSess);
|
||||
srvThread.setDaemon(true);
|
||||
srvThread.setName("Sess_WS" + srvSess.getSessionId());
|
||||
srvThread.start();
|
||||
|
Reference in New Issue
Block a user