Windows error 0x000000D8, 216

Detailed Error Information

EXE_MACHINE_TYPE_MISMATCH[1]

MessageThis version of %1 is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher.
Declared inwinerror.h

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

DRIVER_USED_EXCESSIVE_PTES[2]

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

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 Code216 (0x00d8)

Questions

8votes
0answers

Fixing crashes Windows Phone apps with crashinfo of dev dashboard

I have a simple wp8.1 app published in the store (universal app) but it crashed. So I downloaded the excel file containing crash info from https://dev.windowsphone.com/en-us/DownloadReport The crash(es) occur in the latest version of my app and the clients have 8.1 (because you cannot run universal apps otherwise) Here is [...] read more
exception
windows-phone-8.1
win-universal-app
3votes
2answers

Why might a Macbook Pro be freezing on resume from sleep?

My Macbook Pro (17" 2.2 Ghz Intel Core 2 Duo, OS X 10.4.11) often locks up when it resumes from sleep. I usually know I'm in trouble when the display brightness doesn't adjust right away. Then it runs for a few seconds until it stops responding again. The pointer works, [...] read more
macos
macbook
sleep
freeze
2votes
1answer

jvm jit common subexpression elimination

Testing the following snippet using jmh. class A { public int test(int i) { long sum = 0L; for (int j=0; j<i; ++j) { sum += 1 << (j % 32); } return (int)sum; } } @State(Scope.Thread) public class MyBenchmark { public A a; int x; @Setup(Level.Trial) public void init() [...] read more
java
jvm
jit
1vote
0answers

C - Get File Bytes as Unsigned Int

I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
c
1vote
0answers

number of sections in core dump are more than the mmaped

I am trying to debug a kernel module. I have a piece of code to get the number of maps in a process: static int tmp_func(void){ int count = 0; struct mm_struct *mm = current->mm; struct vm_area_struct *map; down_read(&mm->mmap_sem); /* 1. just counts maps ... */ for (map = mm->mmap; [...] read more
linux
memory
core
mmap
1vote
1answer

GUI program can't allocate a console in Qt's debugger

I have a GUI program that opens a Windows console in a separate window to display output and accept user input. My development environment is Qt 4.7.1 with mingw. The console works fine, until I try to run the program in Qt's debugger (gdb); then, although AllocConsole succeeds, and GetStdHandle [...] read more
qt
qt4
console
gdb
1vote
1answer

Can one assign 4 little-endian-ordered bytes of an unsigned integer to a Java primitive using just bitwise operators?

I want to read 4 bytes which are a little-endian encoding of an unsigned 32-bit integer, and assign the value to a Java int (Yes, in reality I will use a 'long', but in this case I 'know' that the unsigned value is never so big that it will overflow [...] read more
java
bitwise-operators
endianness
numeric-conversion
0votes
1answer

Can't start a cmd.exe shell with ConEmu

I've installed ConEmu on a Windows 10 64bits machine. It worked fine for a few hours. But today, while trying to start a simple cmd.exe shell, I get two errors message. 1. in a dialog box, it says that > 16 bits application is not supported. Impossible to start or [...] read more
windows-10
cmd.exe
conemu
0votes
0answers

Sideloaded app crashes for no apparent reason

I installed my app using a sideloaded package on 2 different computer. The app is installing, with the certificate and the Powershell script, but once it's installed when I try to launch it, the app is crashing instantly for no reason. I installed the app on the laptop I used [...] read more
c#
windows
uwp
0votes
1answer

Facing issues while launching demo for Oculus SDK 0.6.0.1

I am facing below exception while launching the Oculus SDK 0.6.0.1 demo program. **Exception Info Exception report file: C:\Users\Exception Report (2015-06-26 12.41.23).txt Exception minidump file: C:\Users\Exception Minidump (2015-06-26 12.41.23).mdmp Time (GMT): 2015/06/26 12:41:23 Time (local): 2015/06/26 18:11:23 Thread name: (not available) Thread handle: 0x000000d8 Thread sys id: 976 (0x3d0) Exception [...] read more
oculus
-1votes
2answers

vc++ Access violation reading location

I'm getting a error: First-chance exception at 0x0021F4F2 in Tetris.exe: 0xC0000005: Access violation reading location 0x000000D8. Unhandled exception at 0x0021F4F2 in Tetris.exe: 0xC000041D: An unhandled exception was encountered during a user callback. Here is my ColorGrid.cpp file, error happens when I run the application at function name const COLORREF ColorGrid::Index(int [...] read more
c++
visual-c++

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