![]() |
|
||||||||
경고! 게시물 작성자의 사전 허락없는 메일주소 추출행위 절대 금지 |
|
IdStack.pas에...
finalization // Dont Free. If shutdown is from another Init section, it can cause GPF when stack // tries to access it. App will kill it off anyways, so just let it leak {$IFDEF IDFREEONFINAL} Sys.FreeAndNil(GStackCriticalSection); {$ENDIF} IdThread.pas에.. finalization // This call hangs if not all threads have been properly destroyed. // But without this, bad threads can often have worse results. Catch 22. // TIdThread.WaitAllThreadsTerminated; {$IFDEF IDFREEONFINAL} //only enable this if you know your code exits thread-clean Sys.FreeAndNil(GThreadCount); {$ENDIF} 관련 글 리스트
|
Copyright © 1999-2015, borlandforum.com. All right reserved. |
근데 왜 의도적인 릭을 넣었을까요?