Windows error 0x00000320, 800

Detailed Error Information

OPLOCK_SWITCHED_TO_NEW_HANDLE[1]

MessageThe oplock that was associated with this handle is now associated with a different handle.
Declared inwinerror.h

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

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 Code800 (0x0320)

Questions

4votes
3answers

failure to create a DirectX device and swapchain

I am having issues retrieving a swapchain and device from directx. further info is in the code void GXDX::StartUp(HWND* mainWindow,int w, int h) { //width and height are members of GXDX width = w; //contains the width height = h; //contains the height this->mainWindow = mainWindow; // Is a handle [...] read more
c++
visual-studio
visual-c++
2votes
0answers

no /dev/*, but /sys/bus/mmc device info on damaged SD-Card

A friend gave me a broken SD-card, hoping I might recover something from it. I have no trouble mounting any other cards, whatsoever. I am not getting any block devices in /dev, but the mmc subsystem recognizes the inserted card as mmc0 and lists it. edit3: the card specs from [...] read more
data-recovery
sd-card
mmc
2votes
2answers

DWARF - How to find the prologue end/epilogue start addresses of functions in a given binary?

I have an ARM binary of which I need to find exactly at which addresses its function's prologues end and the epilogues begin. In other words, I need the boundaries of the function bodies. For instance, if I have a function whose assembly is something like: 0x00000320 <+0>: push {r7, [...] read more
c
assembly
objdump
dwarf
readelf
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
0votes
1answer

dnf install on CentOS 8 hangs an e2-medium instance

Trying to install a package or upgrade a CentOS 8 system makes an e2-medium instance unresponsive. This has happened to me repeatedly on multiple instances. Nothing peaks in monitoring for any prolonged period. The CPU load spikes briefly, but does not surpass 50 %, so does disk I/O, with ~7 [...] read more
google-cloud-platform
google-compute-engine
centos8
0votes
0answers

Windows Time service won't synchronize

I'm posting my problem here because even with all the post I could read to fix this, the w32tm still give me the same error message when trying to synchronize the computer time with a local NTP server (which is a PLC). Here's a quick explanation of the situation : [...] read more
windows
synchronization
windows-services
wireshark
ntp
0votes
3answers

Imagemagick only reading red channel

I have a TIFF-Image, which i want to convert into a JPG. While on my local machine (Ubuntu 19.10LTS), I have ImageMagick 6.9 installed, the targeted system (Alpine 3.12.4) will have 7.0 installed. I use this command to convert the image: convert 100U.TIF 100U.JPG While on my local machine the [...] read more
imagemagick
tiff
imagemagick-convert
image-conversion
imagemagick-identify
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

segfault at creation-class after cross-compilation for Windows

I try to create a prorgam using SFML 2.0 for Windows, using a Gentoo Linux with mingw32. I don't want to recompile SFML and all it's dependencies, so i've downloaded a compiled version from the official site (version 32 bits - SJLJ) I have compiled my code, and executed it [...] read more
c++
segmentation-fault
cross-compiling
sfml

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