Windows error 0x00000128, 296

Detailed Error Information

WORKER_THREAD_RETURNED_WITH_BAD_IO_PRIORITY[1]

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

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][3]
DescriptionThe default facility code.[2][3]
Error Code296 (0x0128)

Questions

10votes
5answers

How to make a enum with values over max int allowed?

I'm making a enum in c++ to make a finite state machine using binary flags. It looks like: enum VStates { NEUTRAL = 0x00000000, // 000000 // Physical Status DRY = 0x00000001, // 000001 WET = 0x00000002, // 000010 HOT = 0x00000004, // 000100 COLD = 0x00000008, // 001000 BURNED [...] read more
c++
variables
enums
3votes
0answers

"ld: 32-bit RIP relative reference out of range" on Mac OSX

I am trying to compile a Fortran 90 code that basically solves a very large system of differential equations (around 5000 ODEs). In order to increase the precision of the solver, I have to increase the size of the solution arrays, and I am running into a problem. I am [...] read more
gcc
compiler-errors
fortran
gfortran
3votes
1answer

Stream from IP Camera very jittery on VLC

This question is a prologue to the one I previously asked here. I'm working on an IP camera project that is based on TI OMAP-L138. All in all, the H264 encoded video is streamed via live555 libraries over RTSP. For Live555 I'm using deviceSource based framed source. However, when I [...] read more
c++
algorithm
h.264
live555
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
1vote
1answer

Decoding flags are not working correctly

I have designed some flags: enum ImportAssignment { OCLMChairman = 0x00000001, OCLMOpenPrayer = 0x00000002, OCLMClosePrayer = 0x00000004, OCLMConductorCBS = 0x00000008, OCLMReaderCBS = 0x00000016, PTChairman = 0x00000032, PTHospitality = 0x00000064, WTConductor = 0x00000128, WTReader = 0x00000256 }; In my dialog I read/write the flags from/to the registry: void CImportOCLMAssignmentHistoryDlg::ReadSettings() { m_dwImportFlags [...] read more
c++
mfc
flags
1vote
1answer

uPP Device Driver is dropping data from buffer

I have written code for a uPP device driver to be used with an OMAPL138 based custom board for data acquisition through a camera lens. The code for my device driver is: /* * A device driver for the Texas Instruments * Universal Paralllel Port (UPP) * * Modified by: [...] read more
c
multithreading
arm
linux-device-driver
omap
1vote
2answers

Seg Fault in ARM Assembly

So, I am trying to learn ARM assembly and basically what I want to do is turn on the LEDs of my BeagleBone Black using pure assembly. I know how to program in C very well, but I am new to ARM assembly if that makes any difference. Basically I [...] read more
c
assembly
beagleboneblack
1vote
1answer

Decoding Stack Trace error

I am looking at the crash history and the following appears. Is there a way to identify what is the error or how to resolve? Is there any place where it identifies the error codes? Exception Type: system.exception > Frame Image Function Offset > 0 windows_ni Windows.Phone.Speech.Recognition.SpeechRecognizer..ctor > 0x00000001 > [...] read more
windows-phone-8
0votes
1answer

using shared memory in cuda gives memory write error

I had a kernel which works fine as __global__ static void CalcSTLDistance_Kernel(Integer ComputeParticleNumber) { const Integer TID = CudaGetTargetID(); const Integer ID = TID; if(ID >= ComputeParticleNumber) { return ; } CDistance NearestDistance; Integer NearestID = -1; NearestDistance.Magnitude = 1e8; NearestDistance.Direction = make_Scalar3(0,0,0); if(c_daOutputParticleID[ID] < -1) { c_daSTLDistance[ID] = NearestDistance; [...] read more
cuda
shared-memory

Comments

Leave a comment

(plain text only)

Sources

  1. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0