Windows error 0x0000013C, 316

Detailed Error Information

DEVICE_FEATURE_NOT_SUPPORTED[1]

MessageThe device does not support the command feature.
Declared inwinerror.h

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

INVALID_IO_BOOST_STATE[2]

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

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 Code316 (0x013c)

Questions

1vote
0answers

Keep having an error when using static array which is not initialized

I am using 16bit microcontroller which uses gcc4.5 compiler, 32kbyte flash/1kbyte ram. compiling is fine without error, memory is reaching to it's limit but it has some vacancy on both flash/ram and works just fine However, when i define static array without initialization it causes system to die. I cannot [...] read more
c
1vote
0answers

Beaglebone Black and Qt5.10

I am using Beaglebone Black Rev C with BB-View CapeManager as follow: 1. Latest kernel version: "Linux arm 4.15.0-bone2.1 #1 Tue Jan 30 11:48:09 GMT 2018 armv7l GNU/Linux" 2. BBB fire up correctly and screen work correctly 3. Build Qt-everywhere package 5.11 fro io.qtdownload site 4. The Qt for ARM [...] read more
c
linux
qt
ubuntu
beagleboneblack
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

Google breakpad give invalid dump info on some devices/cpus/os?

I've compiled and ran google-breakpad on android app successfully, and solved some crashes with the sufficient information collected through it. But among the dumps there're some insufficient ones that give no stack trace or issued models. I spent some time trying to figure out the relationship between dump info and [...] read more
android
android-ndk
google-breakpad
1vote
1answer

Strange unhandled exception; Access violation reading location

When I try to call SDL_DisplayFormatAlpha, I get this unhandled exception: "Unhandled exception at 0x68125981 (SDL.dll) in herorpg.exe: 0xC0000005: Access violation reading location 0x0000013C." CODE: SDL_Surface* load_image ( char* filename ) { SDL_Surface* loadedImage = NULL; SDL_Surface* optimizedImage = NULL; loadedImage = IMG_Load ( filename ); if ( loadedImage != [...] read more
c++
sdl
0votes
0answers

PEVerify Defect: It reports "Type load failed" on valid class compiled with csc.exe for compact framework

A trivial class: public class TestClass : System.ServiceModel.Security.SecurityCredentialsManager { } When compiled using csc against the MS CompactFramework v3.5 will result in a dll that fails to pass peverify, resulting in a "Type load failure". It appears to be an issue with inheriting from the SecurityCredentialsManager class which is part [...] read more
c#
compact-framework
cil
csc
peverify
0votes
2answers

Having trouble with pointers in classes

I don't have any trouble when I declare SDL_Surface *dot = NULL; globally, but if the SDL_Surface is unique to the class I cant set it to NULL, so thought it would be fine if I declare it in the constructor like dot = load_image( "dot.bmp" ); but I still [...] read more
c++
pointers
sdl
0votes
1answer

Internal Error: Blackberry 9800 Simulator

I am new to Blackberry development. I downloaded and installed Eclipse plugin for Blackberry v1.5. It was successful but everything I try to run a sample code that is running on my friend's machine i get this error. Internal Error: Blackberry 9800 Simulator Access violation reading from 0x0000013C Please what [...] read more
java-me
eclipse-plugin
simulator
blackberry-simulator

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