Windows error 0x00000231, 561

Detailed Error Information

INVALID_LDT_SIZE[1]

MessageIndicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors.
Declared inwinerror.h

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

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 Code561 (0x0231)

Questions

0votes
0answers

Analysing a discrepancy between heap and process memory in .NET

As you can see in the attached image, the total heap size is less than 9MB, but the process memory usage is almost 22GB. This is an intermittent bug that I can't reliably reproduce so I'm struggling to debug the problem. What do I need to be looking at to [...] read more
c#
.net
memory
memory-management
0votes
0answers

Why is Clang crashing?

I built Cmake using cmake -G"Visual Studio 12 2013" -T"LLVM-vs2013" .. But I have a weird problem with compiling libCinder. Clang keeps crashing, I'm wondering what's going on. I'm using Visual Studio 2017 on Windows 10. Here is the Clang crash message: 1>Assertion failed: Content.size() != 0, file C:\src\llvm_package_325576\llvm\tools\clang\lib\AST\CommentParser.cpp, line [...] read more
c++
visual-studio
clang
clang++
llvm-clang

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