성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>windbg - sos 명령어 수행 시 c0000006 오류 발생</h1> <p> !clrstack은 잘 되는데,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > 0:350> <span style='color: blue; font-weight: bold'>!clrstack</span> OS Thread Id: 0x1544 (350) ESP EIP 4cdbee34 7c9683ac [HelperMethodFrame: 4cdbee34] 4cdbeea0 062c6fed System.String.ToCharArray(Int32, Int32) 4cdbeec4 062c6b39 System.Text.StringBuilder.AppendFormat(System.IFormatProvider, System.String, System.Object[]) 4cdbef0c 0ee0a58e System.Diagnostics.StackTrace.ToString(TraceFormat) 4cdbef64 0ee0e052 System.Diagnostics.StackTrace.ToString() 4cdbef68 2b8e6ec5 TestApp.ThreadDumper.GetCallStack(System.Threading.Thread, Boolean ByRef) 4cdbf010 090d41b4 TestApp.AutoCallStackThread.dumpRepeatCallStack(TestApp.CancellableThread) 4cdbf0fc 090d2f95 TestApp.AutoCallStackThread.repeatCallStackFunc(System.Object) 4cdbf158 08c7688b System.Threading.ThreadHelper.ThreadStart_Context(System.Object) 4cdbf168 08c76382 System.Threading.ExecutionContext.runTryCode(System.Object) 4cdbf598 79e71b4c [HelperMethodFrame_PROTECTOBJ: 4cdbf598] System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode, CleanupCode, System.Object) 4cdbf600 08c758dc System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) 4cdbf61c 08c756b7 System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) 4cdbf634 08c75603 System.Threading.ThreadHelper.ThreadStart(System.Object) 4cdbf860 79e71b4c [GCFrame: 4cdbf860] 4cdbfb50 79e71b4c [ContextTransitionFrame: 4cdbfb50] </pre> <br /> -a 옵션을 넣는 경우 이런 오류가 발생할 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > 0:350> <span style='color: blue; font-weight: bold'>!clrstack -a</span> OS Thread Id: 0x1544 (350) ESP EIP 4cdbee34 7c9683ac [HelperMethodFrame: 4cdbee34] 4cdbeea0 062c6fed System.String.ToCharArray(Int32, Int32)c0000006 Exception in f:\dump\sos.dll.clrstack debugger extension. PC: 638d96f0 VA: 638d96f0 R/W: 8 Parameter: c000026e </pre> <br /> 제 경험으로 볼 때, 저렇게 sos.dll에서 오류가 발생하는 경우는 예전 버전의 sos.dll을 사용할 때입니다. 이런 식으로 windbg에서 c0000006 오류가 발생하면 그 이후의 명령들이 모두 먹통이 됩니다. 즉, dso와 같은 명령어를 수행하려고 해도 다음과 같이 나옵니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > 0:350> <span style='color: blue; font-weight: bold'>!dso</span> c0000006 Exception in f:\dump\sos.dll.dso debugger extension. PC: 638daa00 VA: 638daa00 R/W: 8 Parameter: c000026e </pre> <br /> 재미있는 것은, 이럴 때 당황하지 마시고 ^^ windbg를 다시 실행해 덤프를 로드하면 종종 잘 되는 경우가 있습니다. 심지어 위에서 !clrstack -a 명령어 수행 시 c000026e 오류가 발생했지만 다시 로드하고 나서는 그것조차도 정상적으로 실행되기도 합니다.<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
9529
(왼쪽의 숫자를 입력해야 합니다.)