Windows error 0x00000240, 576

Detailed Error Information

PAGEFILE_CREATE_FAILED[1]

MessageThe creation of the paging file %hs failed (%lx). The requested size was %ld.
Declared inwinerror.h

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

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 Code576 (0x0240)

Questions

42votes
4answers

I updated my CentOS 7 system. Why is Meltdown/Spectre only partially mitigated?

Like many of us, I spent yesterday updating a whole lot of systems to mitigate the Meltdown and Spectre attacks. As I understand it, it is necessary to install two packages and reboot: kernel-3.10.0-693.11.6.el7.x86_64 microcode_ctl-2.1-22.2.el7.x86_64 I have two CentOS 7 systems on which I've installed these packages and rebooted. According [...] read more
security
centos7
rhel7
vulnerabilities
5votes
2answers

How to generate a predictable shuffling of a sequence without generating the whole sequence in advance?

The following python code describes exactly what I want to achieve for a sequence of arbitrary size (population): import random fixed_seed = 1 #generate the same sequence every time with a fixed seed population = 1000 sample_count = 5 #demonstration number num_retries = 3 #just enough to show the repeatable [...] read more
python
algorithm
random
lcg
2votes
0answers

Should or shouldn't I mask the results of XGETBV before using them for XSETBV?

I am trying to execute some UEFI applications. I found this code crashes on VirtualBox (test success is not printed while test start is printed): #include <stdint.h> void* ConOut; uint64_t (*OutputString)(void* protocol, void* string); void printChar(int c) { unsigned char data[4] = { (unsigned char)c }; if (c == '\n') [...] read more
x86
x86-64
avx
bare-metal
1vote
0answers

gcc 6.3 including too many debug symbols, especially extern global declarations

This question may have been asked, but I've got a toy program that exemplifies the issue fairly well. SYNOPSIS When compiling with gcc -g using gcc 4.9, the debug symbols included, especially for externally declared global variables, is at an expected and familiar amount. When switching to gcc 6.3, the [...] read more
c
gcc
debug-symbols
0votes
0answers

App Verifier Stop 00000900 using File Open Dialog

My C++/MFC program uses the CFileDialog class to retrieve a filename to open. If I comment out the DoModal() call, no Verifier Stops occur. If the dialog is opened (even if it is then simply Canceled), the stops are generated -- three in a row. So I tried the Common [...] read more
c++
memory-leaks
heap-memory
application-verifier
0votes
0answers

use openssl aes decryption C# RijndaelManaged encryption data problem

The output length of the openssl aes EVP_DecryptUpdate method is inconsistent with the data length. What is the situation? Thank you c++ decrypt source static int Decrypt( std::vector<uint8_t> & en_data, int en_data_len, std::vector<uint8_t> & decrypt_data, unsigned char *key, unsigned char *iv, const int type ) { std::vector<uint8_t> buffer(en_data_len + EVP_MAX_BLOCK_LENGTH); [...] read more
c++
encryption
openssl
aes
0votes
1answer

XMS.NET fails when receiving JMS message with RFH2 header at ParseJmsFolder

Our partner started using custom properties for messages being sent over IBM WebSphere MQ and our application developed using XMS.NET started to fail because of that. It turned out that the error is being thrown inside parsing the JMS envelope and inside the ParseJmsFolder method. This is the exception we [...] read more
.net
jms
ibm-mq
xms
rfh2
0votes
1answer

How to load a stacktrace into Visual Studio 2013 for offline debugging?

Well i'm in the situation where my dll file passes all the tests but somehow on the production server it sometimes does crash at the least expected moments. There is actually no possibility to run a debugger but there is a generated stacktrace file: An exception occured at address 0x0045DA51 [...] read more
windows
debugging
visual-c++
visual-studio-2013
visual-studio-debugging

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