Thread.Abort 호출의 hang 현상
Thread.Abort 문서에 보면,
Thread.Abort Method
; https://learn.microsoft.com/en-us/dotnet/api/system.threading.thread.abort#System_Threading_Thread_Abort
다음과 같은 내용이 나오는데요.
The thread is not guaranteed to abort immediately, or at all. This situation can occur if a thread does an unbounded amount of computation in the finally blocks that are called as part of the abort procedure, thereby indefinitely delaying the abort. To wait until a thread has aborted, you can call the Join method on the thread after calling the Abort method, but there is no guarantee the wait will end.
...[생략]...
If Abort is called on a managed thread while it is executing unmanaged code, a ThreadAbortException is not thrown until the thread returns to managed code.
실제로 다음의 질문에 재현할 수 있는 코드가 실려 있습니다.
AcceptSocket does not respect a Thread.Abort request [duplicate]
; http://stackoverflow.com/questions/5778267/acceptsocket-does-not-respect-a-thread-abort-request
class Program
{
static void Main(string[] args)
{
Thread thread = new Thread(Listen);
thread.Start();
Thread.Sleep(1000); // give it a second to get going
Console.WriteLine("Aborting listener thread");
thread.Abort();
thread.Join();
Console.WriteLine("Listener thread finished press <enter> to end app.");
Console.ReadLine();
}
static void Listen()
{
try
{
Console.WriteLine("Starting to listen");
TcpListener listener = new TcpListener(IPAddress.Any, 4070);
listener.Start();
Socket socket = listener.AcceptSocket();
Console.WriteLine("Connected!");
return;
}
catch (ThreadAbortException exception)
{
Console.WriteLine("Abort requested");
}
}
}
Socket.Accept는 Win32 API의 accept 메소드로 호출이 전달되고, 그것은 unmanaged 영역의 코드이기 때문에 해당 코드가 반환하기 전까지는 managed 영역으로 넘어오지 않아서 ThreadAbortException이 실행될 기회가 발생하지 않는 것입니다.
근데, 이게 좀 재현이 애매모호합니다. 실제로 제가 해본 결과 hang 현상의 재현이 쉽지 않았습니다. 단지 NT 서비스로 만든 경우 hang이 걸리는 것을 확인했는데 정확한 규칙이 없었습니다.
돌이켜 보면, 실제 개발 경험에서도 hang 현상을 겪었던 것 같기도 합니다. 조금 다른 문제였는데요. 다른 쓰레드의 실행을 중지 하기 위해 Thread.Abort 메소드를 호출했는데, 그 메소드를 호출하는 스레드가 hang 현상에 빠져버린 것입니다. 처음에는 문서에 나온대로 Thread.Join에서 hang이 있는 줄 알았지만, 덤프를 떠 보면 Abort에서 걸려 있는 것을 확인했습니다. (솔직히, 해당 덤프 파일을 남겨두지 않아서 이젠 그것이 정말 원인이었는지 조차 기억이 희미하군요. ^^;)
정리해 보면, Thread.Abort로 인해 대상 스레드가 반드시 종료된다는 보장이 없으며 Thread.Abort를 호출한 메서드는 대상 스레드가 종료될 때까지 기다리는 경우도 있다는 것을 고려해야 합니다.
[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]