Windows error 0x00000076, 118

Detailed Error Information

INVALID_VERIFY_SWITCH[1]

MessageThe verify-on-write switch parameter value is not correct.
Declared inwinerror.h

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

PROCESS_HAS_LOCKED_PAGES[2]

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

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 Code118 (0x0076)

Questions

7votes
2answers

C# program causes bluescreen?

This is only the important stuff that the bluescreen shows. I'm on Windows 7 x64. "A problem has been detected and Windows has been shut down to prevent damage to your computer. PROCESS_HAS_LOCKED_PAGES * STOP: 0x00000076 (0x0000000000000000, 0xfffffa8009dcd060, 0x0000000000000011, 0x0000000000000000)" I can't work on it now because every time I [...] read more
c#
sockets
thread-safety
2votes
0answers

apktool not working its showing andriodmanifest.xml

Desktop$ apktool d -f mini.apk 07:16:48 up 1 day, 11:43, 1 user, load average: 0.53, 0.80, 1.09 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT user tty7 :0 Sat19 35:43m 32:05 1.42s /sbin/upstart - I: Using Apktool 2.0.2-dirty on mini.apk I: Loading resource table... I: Decoding AndroidManifest.xml with resources... I: [...] read more
java
android
xml
apktool
1vote
0answers

PCI Interrupt Not Assigned

The legacy interrupt assignment for a PCI interface is receiving interrupt 0. We are evaluating the Xilinx Zynq UltraScale+ MPSoC ZCU102 Evaluation Kit. We have a PMC interface that is on a PCI-e carrier inserted into the PCI-e slot on the board. When the driver is loaded the interrupt for [...] read more
interrupt
xilinx
pci-e
zynq
1vote
0answers

KANNEL SMPP not able to send message to geturl

We are not able to receive MO on smpp kannel below if the configure smsbox configuration group = smsbox bearerbox-host = 127.0.0.1 sendsms-port = 13013 global-sender = 13013 sms-length = 500 smsbox-id = mysmsc group = sendsms-user username = tester password = foobar #max-messages=3 # http://kannel.machine:13013/cgi-bin/sendsms?username=tester&password=foobar group = sms-service accepted-smsc [...] read more
smpp
kannel
0votes
1answer

Customizing Fantacy Remote .INI file

I am using Fantacy Remote to remote view other machines. I have attached the default .INI file that Fantacy Remote uses. When i connect to a machine, the client user should not have mouse and keyboard access of the Remote machine. It should be a View only remote connection. And [...] read more
remote-desktop
remote-access
0votes
1answer

Calling to a pointer from a c++ thread

I'm trying to call from a thread to a pointer. Here is my code: myDll.dll c++ : long cbAddrAsync; void _asyncer(void* data) { typedef void (__stdcall *FUNCPTR)(); FUNCPTR vbFunc; vbFunc = (FUNCPTR)cbAddrAsync; vbFunc(); } extern "C" __declspec(dllexport) void async(long addr) { cbAddrAsync = addr; HANDLE hHandle = (HANDLE)_beginthread(_asyncer,0,NULL); } calling [...] read more
c++
multithreading
pointers
vb6

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