Windows error 0x0000006E, 110

Detailed Error Information

OPEN_FAILED[1]

MessageThe system cannot open the device or file specified.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x8007006E.

SESSION2_INITIALIZATION_FAILED[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x6E: SESSION2_INITIALIZATION_FAILED.

HRESULT analysis[3]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[3][1]
DescriptionThe default facility code.[3][1]
Error Code110 (0x006e)

Questions

2votes
2answers

How can I replace a word with text from earlier in the same line?

I have a text file that looks like this: _map[0x00000044] = "screen"; _map[0x00000059] = "map"; _map[0x0000006e] = "info"; I would like to replace the words at the end of each line so my output looks like this: _map[0x00000044] = "0044"; _map[0x00000059] = "0059"; _map[0x0000006e] = "006e"; I would like to [...] read more
perl
1vote
1answer

.NET application handle leak, how to locate the source?

I have a .NET application running in production environment (WINDOWS XP + .NET 3.5 SP1) with a stable handle count around 2000, but in some unknown situation, its handle count will increase extremely fast and finally crash itself(over 10,000 which monitored by PerfMon tool). I've made a memory dump from [...] read more
windows
performance
memory-leaks
windbg
1vote
0answers

Dr Memory Unitialized Read Error Disagrees With Dissasembly

I have a simple loop whose purpose is to split a line of a (very simple) csv into columns. The relevant section of the foor loop is as follows: for (size_t i = 0; i< csvRowReader->_currentRowTextLength; i++) { char character = csvRowReader->_currentRowText[i]; if (character == ',') { ... } ... [...] read more
c
dr-memory
0votes
0answers

MIPS Runtime exception and Address out of range

Hello I am trying to write this code for a project and at the end of the code I am getting the error "line 84: Runtime exception at 0x004000dc: address out of range 0x0000006e" I am new to MIPS and can not figure out how to resolve this. The purpose [...] read more
string
assembly
mips
mars-simulator
0votes
2answers

How can I get all frames of stack traces in "!htrace -diff" result?

It seems that "!htrace -diff" can only show 16 frames. How can I increase the frame counts in the stack traces? The following is one of the handles leaked detected by !htrace -diff. I can't read anything from it without a complete stack trace. Handle = 0x00000f7c - OPEN Thread [...] read more
memory-leaks
windbg
handle-leak
0votes
1answer

An Outlook plugin memory leak when using CComVariant

I'm analyzing a handle leak and memory leak in a Outlook plugin. I put my analysis step here, as I hardly have any c++ knowledge (Last time I used c++ is 7 years ago). After searching from Google, I used WinDbg's !htrace -diff command to find the handle leak. Also, [...] read more
c++
memory-leaks
-3votes
1answer

Which thread does this iPad application crash log referring?

Please guide to resolve this issue: Incident Identifier: B1030E8C-D08F-4009-872F-AC93DCF822B8 CrashReporter Key: 7443d58afe6b6a3df23c273ba834f8ae4814a7ce Hardware Model: iPad2,1 Process: BLSOffline [1307] Path: /var/mobile/Applications/68D88727-3C5D-499F-9BF4-803894B8ED5C/BLSOffline.app/BLSOffline Identifier: com.bentley.LearnInHouse Version: 1.0 (1.0) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2013-12-17 11:31:23.291 +0530 OS Version: iOS 7.0.4 (11B554a) Report Version: 104 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception [...] read more
ios
ipad
ios7
crash
crash-log
-4votes
1answer

jvm crush with EXCEPTION_ACCESS_VIOLATION when executing writeUTF method

When i start my application and it happens this fatal error sometime, does anybody know what's the reason? The blow is the mainly trace, more details kindly see the link # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x028d5a8d, pid=9856, [...] read more
java
jvm
crush

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0