Windows error 0x000000AA, 170

Detailed Error Information

BUSY[1]

MessageThe requested resource is in use.
Declared inwinerror.h

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

HRESULT analysis[2]

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[2][1]
DescriptionThe default facility code.[2][1]
Error Code170 (0x00aa)

Questions

5votes
1answer

Inneractive Ads cause a lot of App crashes (Windows Phone)

I use InnerActive as my default Ad provide for my Windows Phone apps. I being using it since June 2013 and on my end of year analysis I realized InnerActive ads are my main source of my app crashes. The worst part is, it's code don't I don't have any [...] read more
windows-phone-7
windows-phone-8
windows-phone
ads
4votes
2answers

C: Little Endian

I am trying to send & receive data between Raspberry Pi (using C programming) & Arduino (using Arduino IDE). Based on what I can find on the internet, it points to me that both are in little endian format. I am sending integers between them using a serial communication (RS232) [...] read more
c
linux
arduino
raspberry-pi
endianness
1vote
0answers

When assigning a pointer to structure pointer, mcu goes in to Hardfault Handler

I am using STM32F072 mcu and IAR as compiler. When I run the code below, it goes into hardfault handler. I couldn't figure out why is that. uint8_t *ptr1; uint32_t *ptr2; uint32_t temp; typedef struct{ uint8_t Data[10]; } example_struct; example_struct sensor; sensor.Data[0] = 0xAA; ptr1 = &sensor.Data[0]; // here ptr1 [...] read more
pointers
structure
stm32
1vote
1answer

Applying a method generically to initialize member through a class template's constructor using SFINAE with constructor delegation

I have this class template that is using SFINAE with constructor delegation. There are 3 cases to determine which version of the constructor(s) that will be called. > Overall structure of class: > > * In the first case it is constructing a smaller size from a larger size and [...] read more
c++
templates
c++17
list-initialization
0votes
1answer

Trying to read from switches and output in a LED switch board

I am wrtiing a program in PLP assembly that repeatedly reads the value of the switches (address: 0xf0100000) and displays a pattern on the LED array (address: 0xf0200000) based on what switches are clicked. Each time the switch value is read, the pattern should be displayed (regardless of whether the [...] read more
assembly
mips
0votes
0answers

Is there a way in MIPS to print an integer value using syscall 4?

Say I have a value 0x000000aa stored in register $t0. Without using syscall 1, I want to print that value out in decimal which is 170. In python it would just be str(170), but I'm not sure where to start in mips. Any hints? read more
assembly
mips
mars-simulator
0votes
1answer

Google Maps Static API not rendering last path of polygon

I have a software that allows users to define certain boundaries in a map. In order to accomplish that I use the drawing functionality of GoogleMaps. Once the user's finished drawing the boundaries I get and encode the path to store it. If I edit that same record, it works [...] read more
google-maps
google-maps-api-3
google-static-maps
0votes
0answers

OpenGL Quads Rendering in Black When Rendering Text

So, I'm using LWJGL and OpenGL to render some quads and textures. My quads have been working fine, until the addition of some textures. Specifically, when I added the ability to render text to the screen, all of the quads color has changed to black. I've looked around for a [...] read more
java
opengl
lwjgl

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0