Windows error 0x00000280, 640

Detailed Error Information

MULTIPLE_FAULT_VIOLATION[1]

Message ERROR_MULTIPLE_FAULT_VIOLATION
Declared inwinerror.h

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

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 Code640 (0x0280)

Questions

2votes
1answer

Why does the gold linker cause dl_iterate_phdr() not to return my custom note section?

On Linux, I would like to store some structures in a custom .note.foobar section and discover them at runtime. I compile and link the program below once with gold and once without: $ gcc -o test-ld test.c $ gcc -o test-gold -fuse-ld=gold test.c You can see that the ld-linked version [...] read more
c
linux
elf
dlopen
gold-linker
2votes
0answers

mspgcc-size ROM/RAM usage in percentage

With mspgcc-size I can get an output like this: text data bss dec hex 13072 236 65296 78604 1330c We know that: Flash = data + text RAM = data + bss How can I extract the size of ROM/RAM from the selected -mmcu=msp430g2553 with the toolchain? e.g. ROM: 8192 [...] read more
microcontroller
avr-gcc
toolchain
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
1vote
0answers

opencv cli app crashes on windows 10

I'm working on a visual studio project(CLI app) that does some image processing over frames captured using opencv's videocapture class. The project works fine on my Windows 7 computer, but when I try to deploy it on Windows 10 the program crashes and the following is being thrown to the [...] read more
c++
windows
opencv
visual-studio-2013
video-capture
1vote
1answer

Tesseract works with other languages, but not Tess4J

we are trying to run Tess4J tests that are provided here: http://tess4j.sourceforge.net/ Tests works fine with English but when I changed language preferences to Turkish they crash. The code that I am changing is: public void testTessBaseAPIRect() throws Exception { System.out.println("TessBaseAPIRect"); String expResult = expOCRResult; String lang = "tur"; //this [...] read more
java
tesseract
0votes
1answer

Binary bomb- phase 6

This is the disassembly of phase_6: 08048dbf <phase_6>: 8048dbf: 55 push %ebp 8048dc0: 89 e5 mov %esp,%ebp 8048dc2: 83 ec 18 sub $0x18,%esp 8048dc5: c7 44 24 0c 00 00 00 movl $0x0,0xc(%esp) 8048dcc: 00 8048dcd: c7 44 24 08 0a 00 00 movl $0xa,0x8(%esp) 8048dd4: 00 8048dd5: c7 44 [...] read more
assembly
x86
reverse-engineering
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
3answers

Safe Whileloop that runs every second

So I want a whileloop that runs every second but appearently using Thread.sleep(1000); , doesn't work as it makes the app freeze and crash with this error : 07-28 15:03:17.641: A/libc(5792): Fatal signal 6 (SIGABRT) at 0x00000280 (code=0), thread 5792 () So im guessing The loop im using isnt safe [...] read more
java
android

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