Windows error 0x000000B2, 178

Detailed Error Information

HRESULT analysis[1]

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

Questions

0votes
1answer

Redis occasional hangs

We have a single standalone Redis (2.8.2104) for Windows node running on a server. Two other server are communicating with this instance. We use it with SignalR and for caching. The dump has a size of about 700MB From time to time we have hangs for 1-3 minutes. After this [...] read more
c#
redis
stackexchange.redis
0votes
2answers

How to translate this inline assembly code to x64 assembly

I have following C++ function with inline assembly: void getMemAddrFromBIOSbySMI(int& bResult, unsigned long& addr,unsigned long& dataLength){ __asm { mov eax, 0x000000E3 mov ebx, 0x00000001 mov ecx, 0xFAFAFAFA mov edx, 0x000000B2 out dx,al mov bResult, eax mov addr, ebx mov dataLength, ecx } if((bResult & 0x000000FF) == 0){ bReSult = 1; [...] read more
c++
assembly

Comments

Leave a comment

(plain text only)

Sources

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

User contributions licensed under CC BY-SA 3.0