Windows error 0x000000E8, 232

Detailed Error Information

NO_DATA[1]

MessageThe pipe is being closed.
Declared inwinerror.h

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

INVALID_CANCEL_OF_FILE_OPEN[2]

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

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 Code232 (0x00e8)

Questions

14votes
4answers

Unhandled Exception in Rad Studio Debugger Thread

I have a large application that recently started exhibiting rather strange behavior when running in a debugger. First, the basics: OS: Windows 7 64-bit. Application: Multithreaded VCL app with many dlls, bpls, and other components. Compiler/IDE: Embarcadero RAD Studio 2010. The observed symptom is this: While the debugger is attached [...] read more
c++
exception
dll
c++builder
c++builder-2010
13votes
1answer

Why is the p-state status MSR on ryzen not changing?

I am trying to detect the current p-state of my cpu. I have noticed that the p-state status MSR (C001_0063) always returns 2 on my ryzen 1700x system, even if the core is clearly not in that state. I think it used to work with the initial bios (v0403) that [...] read more
linux
cpu
hardware
amd-processor
power-saving
4votes
1answer

Different addresses in ELF header and process virtual memory

I see the process image through pmap under linux: 08048000 0 4 0 r-x-- [my program] 08049000 0 4 4 rw--- [my program] The three segments above are code, rodata and data segments, which are all aligned to the PAGESIZE(4K),but when I put the command objdump -h, the ELF headers [...] read more
memory-management
process
operating-system
kernel
elf
2votes
2answers

Segmentation fault using pthread and arm-linux-gnueabihf-gcc

I have been trying all day to fix a segmentation fault that only occurs on one device. But from the beginning... #include <string.h> #include <stdio.h> #include <stdlib.h> #include "pthread.h" void* start_rtn(void* param); int main(int argc, char **argv) { printf("Hallo World\n"); pthread_t tid; int err = pthread_create(&tid, NULL, start_rtn, NULL); pthread_join(tid, [...] read more
c
linux
gcc
pthreads
cross-compiling
1vote
0answers

C - Get File Bytes as Unsigned Int

I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
c
0votes
1answer

Can not call Delphi ActiveX method from JavaScript

I have issue with a Delphi ActiveX control. I create an ActiveX library and then an ActiveX form. I define one function and I want to call this function from JavaScript. But I can't. JavaScript throws an error: "Object doesn't support property or method 'Method1'". This is the HTML code: [...] read more
javascript
delphi
methods
call
0votes
3answers

Opening datasource on 1 form in another raises error

I have a delphi project with multiple forms in it. On one of these forms I have a dataset which contains fields, I would like to open this dataset on another form, however I get the following error message which I've not seen before : Project raised exception class $C0000005 [...] read more
delphi
delphi-xe2
0votes
2answers

WinDbg with dump files when you have a classic ASP app which uses a lot of .Net via interop

Ok, first please don't ask why this application is the way it is. This is a classic ASP application which in several areas uses .Net and COM and some of that .Net also reaches into COM! It's all to do with code reuse really, at some point .Net was introduced [...] read more
.net
memory-leaks
asp-classic
windbg
0votes
3answers

addition at the left of number

How we can we do addition at the left FF instead 00? For example we have a = E8, we need a = 0xFFFFFFe8 0xFFE26C02 -> 0xFFE26C02 0x000000e8 -> 0xFFFFFFe8 0x100000e8 -> 0x100000e8 0x001000e8 -> 0xFF1000e8 P.S. data type int32 or int64 read more
c++
c

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