Windows error 0x000000AB, 171

Detailed Error Information

DEVICE_SUPPORT_IN_PROGRESS[1]

MessageDevice's command support detection is in progress.
Declared inwinerror.h

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

SESSION_HAS_VALID_POOL_ON_EXIT[2]

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

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 Code171 (0x00ab)

Questions

2votes
0answers

Xamarin.iOS app crashes on startup with iPhone5 when downloaded from app store. DYLD, Library not loaded error.-+

I am working on a Xamarin application. The app works fine when deployed Ad-Hoc on my iPhone5. The App works fine on iPad and iPhone6 both in Ad-Hoc and App Store versions. However, I get an instant crash when I try to start the App Store/TestFlight version on my iPhone [...] read more
c#
ios
xamarin
app-store
2votes
2answers

High Performance Bare Metal Abstraction

Recently we got an idea to create generic high performance abstractions for bare metal development with usage of the templates. Usually every chip manufacture provides C header like this: //Following structure is POD so we can rely on its memory layout struct Periphery{ volatile uint32_t reg1; volatile uint32_t reg2; }; [...] read more
c++
templates
arm
embedded
bare-metal
0votes
1answer

python hex value as input integers

I'm trying to call a python script with a hexadecimal address, then add some offset to it: import argparse def main(number): print(number+1234) if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument("--input",type=int) main(number=parser.parse_args().input) Unfortunately, I have a type mismatch I can't seem to fix: $ python hex.py --input=0x000000ab usage: hex.py [-h] [--input [...] read more
python
argparse

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