Windows error 0x0000006D, 109

Detailed Error Information

BROKEN_PIPE[1]

MessageThe pipe has been ended.
Declared inwinerror.h

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

SESSION1_INITIALIZATION_FAILED[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x6D: SESSION1_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 Code109 (0x006d)

Questions

1vote
0answers

Solaris mdb debugger doesn't show correct stack info

I am analysing a core dump of a process under SPARC Solaris. mdb doesn't show functions in the stack correctly. Why could that be? No optimization compiler flags are used to build the process. -------------------------------------------------------------------------------- An update SPARC keeps return addresses in %i7 and %o7 registers. Code that doesn't manipulate [...] read more
c++
debugging
assembly
solaris
coredump
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
0votes
0answers

Issues with Writing

------------------------------------------------------------ UPDATED ------------------------------------------------------ I'm trying to make a code to reverse a string from one location and place it in another, but I keep getting an issue in the start of the reverse part. I want to load the last byte of the string into another register, but I get [...] read more
assembly
arm7
0votes
0answers

Binary Bomb Lab - Phase 6 What is happening to my nodes?

After looking through the assembly, I know I need a pass that is 6 ints long - Each int in the pass is unique - The ints are in the range of 1 to 6 (gdb) disas Dump of assembler code for function phase_6: 0x0000000000401182 <+0>: push %r14 0x0000000000401184 <+2>: [...] read more
assembly
x86
reverse-engineering
-6votes
2answers

Unhandled exception

I wrote a program in visual studio 2013 during compile I got this error: ((Unhandled exception at 0x5837FB53 (msvcr120d.dll) in ConsoleApplication2.exe: 0xC0000005: Access violation reading location 0x0000006D.)) what should i do? here is my code: #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int jabs(int th) { if (th < 0); { th *= [...] read more
c
compilation

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