Windows error 0x00000047, 71

Detailed Error Information

REQ_NOT_ACCEP[1]

MessageNo more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.
Declared inwinerror.h

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

REF_UNKNOWN_LOGON_SESSION[2]

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

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 Code71 (0x0047)

Questions

5votes
4answers

Are there any default values for registers?

I'm trying to understand a little code: jg 0x00000047 dec esp inc esi add [ecx],eax What is the value of eax? These are the four first sentences of the program and i don't know if there is a default value or if the previous sentences add something to eax. My [...] read more
assembly
3votes
1answer

Change display format of DirectX "Object Table"

While debugging with VS 2012 Graphic's Debugger, I want to look at an index buffer, but the format that is showing it in is as float. This means the numbers are different than they would be with an int or short format. Does somebody know how to change this? Here [...] read more
visual-studio-2012
hlsl
directx-11
2votes
1answer

Windows hang in WM_WINDOWPOSCHANGED

I have a DirectX9 application that sporadically runs into a hang in WM_WINDOWPOSCHANGED. The hang occurs only rarely when alt+tabbing into and out of fullscreen exclusive mode. The application is hung because the main window message processing thread is stuck at WaitForSingleObject() in the DefWindowProc handler. Other threads we have [...] read more
c++
windows
directx-9
0votes
1answer

Reduce flickering when using SetWindowPos to change the left edge of a window

Update 1: Here's the simplified version: So I have a special fixed-size child window that I want to make it stay at the right side of the resizable main window. When users resize the main window by dragging the left/right edge of it, WM_WINDOWPOSCHANGED is sent, the child window will [...] read more
winapi
resize
flicker
0votes
1answer

Visual Studio won't show the string values in address, specified by label in address box

The image of an IDE The context is that after typing in greeting1 into the Address Box, it leads me to the address location 0x00000047, and only the questions marks show up. In my understanding, labels defined under the data segments could be used to specify an address location, where [...] read more
assembly
x86
visual-studio-2017
0votes
2answers

C++ How can i fill the bit fields of a struct from a uchar array?

I have an unsigned char array with values as below: u_char *t_header[4]; //filled with values 0x00000047,0x00000004,0x00000093,0x00000012 I have a struct as below: #pragma pack(push, 1) typedef struct th_struct { unsigned s_byte : 8; unsigned t_e_indicator : 1; unsigned p_u_s_indicator : 1; unsigned t_priority : 1; unsigned id : 13; unsigned [...] read more
c++
c
arrays
struct
binary
0votes
1answer

Windows Phone App crashes after Launcher.LaunchFileAsync when downloaded from store

I have a strange problem, if I deploy my app through visual studio as debug or release version all is working well. But if I publish it to the store and download it from there the app crashes after Launcher.LaunchFileAsync or FileOpenPicker. When my app launches for example the default [...] read more
windows-phone
windows-phone-8.1
windows-phone-store
0votes
1answer

Strange stack trace in Windows Phone 8

Hi I have a Windows phone app which is getting a number of crashes reported by the dev center. I recently did an upgrade which included some minor changes and the moving of some common code from a Silverlight class library to a Windows phone class library (so that I [...] read more
windows-phone-8
crash-dumps
0votes
0answers

Kinect C++ Color Data Retrieval

I have altered a Kinect example written in C++ such that the new code will retrieve both the skeleton and the color data, while the original was getting solely skeleton data. I realized that the code was not able to call ProcessColor method, which I implemented in order to process [...] read more
c++
kinect

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