Windows error 0x00000069, 105

Detailed Error Information

SEM_OWNER_DIED[1]

MessageThe previous ownership of this semaphore has ended.
Declared inwinerror.h

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

IO1_INITIALIZATION_FAILED[2]

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

Questions

1vote
2answers

Same c++ code sometimes works and sometimes doesnt

my c++ code works for a couple of times straight and after few executions it suddenly stops working and throws exceptions (without any changes!), and I cant figure out why. This is the problematic part of code: STARTUPINFO si; PROCESS_INFORMATION pi; ZeroMemory(&si, sizeof(si)); si.cb = sizeof(si); ZeroMemory(&pi, sizeof(pi)); TCHAR *path; [...] read more
c++
winapi
0votes
1answer

I know the answer to this program but I don't understand why?

I understand there is an increment of ii and x shifts left, but how does it go from 1 to being 3? Then from 13(D) to being 69? and so on... #include <stdio.h> int main() { int x = 1; int ii; for (ii = 0; ii < 8; ii++) [...] read more
c
0votes
0answers

I get error when displaying the data in listview

Below is the code which executes at last when displaying the data into listview! But when i provide code like > myViewHolder.route.setText(" Hello there"); it shows up the listview with the text. But I get error when performing the below code like > 05-23 14:21:47.350 4821-4821/? I/System.out: infoss route here105 [...] read more
android
listview
android-viewholder
0votes
1answer

Strange stack trace in Windows Phone 8

Hi I have a Windows phone app which is getting a number of crashes reported by the dev center. I recently did an upgrade which included some minor changes and the moving of some common code from a Silverlight class library to a Windows phone class library (so that I [...] read more
windows-phone-8
crash-dumps
0votes
1answer

What is __CFString?

I have arg1 which is an IMessage. IMessage is defined as: struct IMessage { ... struct CFString _field2; ... }; and CFString is defined as: struct CFString { void **_vptr$CFObject; struct __CFString *mCFRef; _Bool mIsMutable; }; and __CFString is defined as: struct __CFString; My goal is to get a string [...] read more
objective-c
cocoa
nsstring
core-foundation
cfstring
-3votes
1answer

Access Violation Reading Location 0x000000xx - c struct property - Visual Studio

As the title tells the story. Pasted below is the piece of code and all the dependencies. The error is strange to me because I am able to access the same variables in Watch window, and I can find no valid reason why I would get this error on runtime. [...] read more
c
visual-studio-2008
struct
access-violation

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