Merge branch 'master' of https://github.com/andremussche/DelphiWebsockets
This commit is contained in:
commit
c712228bbc
2 changed files with 4 additions and 3 deletions
|
@ -1154,8 +1154,7 @@ begin
|
|||
FChannels.UnlockList;
|
||||
strmEvent.Free;
|
||||
end;
|
||||
end
|
||||
else
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TIdWebsocketMultiReadThread.RemoveClient(
|
||||
|
|
|
@ -81,6 +81,8 @@ type
|
|||
class property UseSingleWriteThread: Boolean read FUseSingleWriteThread write FUseSingleWriteThread;
|
||||
end;
|
||||
|
||||
TThreadID = NativeUInt;
|
||||
|
||||
TIdWebsocketQueueThread = class(TThread)
|
||||
private
|
||||
function GetThreadID: TThreadID;
|
||||
|
@ -1036,7 +1038,7 @@ end;
|
|||
|
||||
procedure TIdWebsocketQueueThread.Execute;
|
||||
begin
|
||||
TThread.NameThreadForDebugging(Self.ClassName);
|
||||
TThread.NameThreadForDebugging(ansistring(Self.ClassName));
|
||||
|
||||
while not Terminated do
|
||||
begin
|
||||
|
|
Loading…
Reference in a new issue