Windows error 0x00000066, 102

Detailed Error Information

SEM_IS_SET[1]

MessageThe semaphore is set and cannot be closed.
Declared inwinerror.h

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

CACHE_INITIALIZATION_FAILED[2]

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

Questions

4votes
1answer

Huge amount of mystic crashes of WP8 app

I've published an app with integrated hockeyapp. But Windows Phone dashboard crash report contains mystic crashes that are not in hockeyapp. According to stacktrace they are native (OS crashes). App is 8.0 DirectX + Xaml app. Crashes are generated by 8.1 devices. 8.0 devices worked perfectly. I've tested app on [...] read more
windows-phone-8
3votes
2answers

Problem creating COM-library only containing enum's

I'm am doing a COM-interop project. Substituting some VB and C++ ATL COM projects with C# and .NET Interop. When i define enumerations in .NET and they are made ComVisible, they get exposed as Typelib.EnumType_EnumValue enstead of just Typelib.EnumValue. The typelib exporter does this to ensure that the value names [...] read more
.net
com
interop
com-interop
idl
2votes
0answers

Can't close session

I have the following class: public class TCPHandler extends IoHandlerAdapter{ static AtomicInteger sessions = new AtomicInteger(); @Override public void exceptionCaught(final IoSession session, final Throwable cause) throws Exception { cause.printStackTrace(); //System.out.println(session.isConnected()); //true //System.out.println(session.isClosing()); //false session.close(true).addListener(new IoFutureListener<CloseFuture>() { //immediately! @Override public void operationComplete(final CloseFuture future) { System.out.println("TCP! " + sessions.decrementAndGet()); //Never happens! [...] read more
java
sockets
mina
1vote
1answer

Can't enable Hyper-V on Windows 10 due to Japanese language

Every time I would try to enable Hyper-V, it fails with this error in CBS.log : 2019-11-19 12:34:20, Info CBS Exec: Resolving Package: HyperV-UX-PowerShell-Module-HyperV-WOW64-servercommon-Package~31bf3856ad364e35~amd64~ja-JP~10.0.17763.1, Update: acc2e8a20c76ffe3547579459bc35e3a, PinDeployment: amd64_hyperv-ux-powershel..oyment-languagepack_31bf3856ad364e35_10.0.17763.1_ja-jp_759d6514b48b8eca 2019-11-19 12:34:20, Info CBS Exec: 84 deployments need bulk staging 2019-11-19 12:34:20, Error CSI 000067a7@2019/11/19:11:34:20.604 (F) onecore\base\wcp\componentstore\csd_locking.cpp(95): Error STATUS_SXS_ASSEMBLY_MISSING originated in function [...] read more
windows
hyper-v
0votes
1answer

Integration of IE9 in Vista SP2 fails with error 0x8007000e

I try to deploy Windows Vista SP2 with MDT, and to integrate all updates and Internet Explorer 9. While updates are successfully installed, I'm unable to add KB982861 package. Windows setup stops on "Installing update" step and setuperr.log contains the following: 2014-02-21 19:43:45, Error CSI 00004701 (F) STATUS_NO_MEMORY #67245051# from [...] read more
windows-vista
internet-explorer-9
unattended
0votes
1answer

ESP32 Guru Meditation Error while using .substring method

So I have written a function for my ESP32 using the Arduino IDE, and I needed to write a function to take a combined string of hex values like this: ffffff0000ffff0000 And split it into an array, like this: {"ffffff","0000ff","ff0000"} So far, I've written this: String colorIndex[] = {}; void [...] read more
arduino
esp32
0votes
1answer

Load image from Resource Files of a c++ CLR/CLI project

My project is a c++ CLR/CLI, I have some PNG images in my Resource Files and I want to change the BackgroundImage of a System::Windows::Forms::Button when the button is clicked, my code below: #include <Windows.h> #include "resource.h" private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { HBITMAP hBitMap = (HBITMAP) LoadImage(GetModuleHandle(NULL), MAKEINTRESOURCE(IDB_PNG2), [...] read more
c++
.net
winforms
mono
clr
0votes
1answer

C++ Error when changing the cursor from a resource file

I'm trying to change the cursor of my mouse with a .cur file in a resource file. When I'm try my code, I get this error: > Exception raised at 0x77EB7392 (ntdll.dll) in CleanResourceFiles.exe: > 0xC0000005: Access Violation while reading location 0x00000066. Here is the code: HCURSOR curs = (HCURSOR)LoadImage(NULL, [...] read more
c++
cursor
loadimage
ntdll
resource-file
-1votes
1answer

Simple encryption Assembly Program - Access violation writing to memory location

I had to implement a cdecl calling convention into this program which originally used a non standardized convention. As far as I can tell it looks right, but I get a unhandled exception error saying "Accress violation writing location 0x00000066, which seems to hit when the program gets down to [...] read more
c++
assembly
encryption
cdecl

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