Windows error 0x00000158, 344

Detailed Error Information

COMPRESSION_NOT_BENEFICIAL[1]

MessageCompressing this object would not save space.
Declared inwinerror.h

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

ILLEGAL_IOMMU_PAGE_FAULT[2]

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

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 Code344 (0x0158)

Questions

6votes
1answer

core file memory analysis verification

An application is generating a core file. Here is the core info. The error stack was obtained and the objective is to check the data content within the myStruct variable as this is what gets passed into myFunction when the core occurs. (gdb) where #0 0x000000000041bba1 in myFunction (myStruct=0x7ffff9dd0c20) at [...] read more
c
gdb
coredump
1vote
0answers

How to calculate the virtual address for an ELF program header?

I've wrote to file some assembly instructions and I would like to make them executable. However, I'm messing up something with the program headers. I've read the whole man page about the ELF header, but I didn't understand much. #include <elf.h> #include <unistd.h> #include <fcntl.h> #include <sys/stat.h> void MakeExecutable(char *codeBuffer, [...] read more
c++
elf
coredump
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
0votes
1answer

Unhandled Exception at igd10iumd32.dll

Seems like I'm getting an unhandled exception related to the graphics when working on my project in Visual Studio. I updated the graphics drivers recently, due to Windows 10. It seems like since then these problems happen. It's not on my code, as I've been on and on changing it [...] read more
c++
windows
exception
visual-studio-2013
0votes
1answer

UnAuthorizedAccessException while accessing the GetPath() method for MediaLibrary

I am really stuck in a weird issue which I couldn't reproduce at my end but it is occurring frequently at user's end. According to stack trace it looks like when the user is navigated to specific page, the app crashes. Following the stack trace of that problem which is [...] read more
c#
.net
windows-phone-8
unauthorizedaccessexcepti
media-library
0votes
1answer

Accessing shared memory in CUDA when thread writes overlap

I'm writing a CUDA implementation to generate "magic bitboards" for a chess engine. I have a working CUDA version, but I'm attempting to optimize it. In the end I have two arrays, 'questions' and 'answers', and I'm trying to generate a magic number to multiply by any particular question, and [...] read more
c
cuda
locking

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