Windows error 0x00000108, 264

Detailed Error Information

THIRD_PARTY_FILE_SYSTEM_FAILURE[1]

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

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 Code264 (0x0108)

Questions

3votes
4answers

iPhone Crash with "No Backtrace"

My iPhone app was recently rejected from the App Store "because it crashes on launch". However, I cannot reproduce this crash. The app works perfectly on both the simulator and a device with the same hardware and software Apple tested it on (iPhone 3.1 running iOS 4). The crash logs [...] read more
iphone
objective-c
crash-dumps
crash-reports
appstore-approval
2votes
1answer

DX12 Initialization Fail VS2019

I have done the init steps in DX10/11/12 many times before, all of a sudden in VS2019 DX12 will not create anything besides the following objects: ID3D12Debug, ID3D12InfoQueue, ID3D12Device2. Even a straight creation of command queue fails: bool DX12ObjectFactory::CreateCommandQueue(ID3D12Device* pDevice, __out ID3D12CommandQueue** ppCmdQueue, const D3D12_COMMAND_QUEUE_DESC& queueCreateDesc) { OnFailedThrow(pDevice->CreateCommandQueue(&queueCreateDesc, IID_PPV_ARGS(&*ppCmdQueue))); return [...] read more
c++
windows-10
directx
directx-12
2votes
1answer

Is this a bug in CUDA? (illegal memory access was encountered)

I am using the following CUDA kernel: __global__ void sum_worker(int *data, int *sum_ptr) { __shared__ int block_sum; int idx = threadIdx.x; int thread_sum = 0; if (threadIdx.x == 0) block_sum = 2; for (int i = idx; i < MAX_INDEX; i += blockDim.x) thread_sum += data[i]; __syncthreads(); atomicAdd(&block_sum, thread_sum); __syncthreads(); [...] read more
cuda
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

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

Why do the usual STM32 start ups define the vector table with fewer entries than in the reference manual?

I'm learning low-level details of the STM32. I am puzzled by how the vector table is setup. In the reference manual, table 63, it lists the STM32F103C8's vector table. It goes from 0x00000000 through 0x00000130. However, if you look at the generated files from STM32CubeMX (like startup_stm32f103xb.s), you notice it [...] read more
stm32
0votes
1answer

CUDA cuSolver gesvdj with large matrix

I am running a slightly modified version of the code found here under section "G.2. SVD with singular vectors (via Jacobi method)" on a NVIDIA P6000. The slight modifications are to dynamically allocate memory in the heap for the A, U, and V vectors and to fill the A vector [...] read more
cuda
cusolver
-1votes
1answer

in arm7tdmi, when FIQ and RIQ occures at same time so how both are executed sequentially,first FIQ and thenIRQ?

in arm7tdmi, suppose instruction is being executed and at same time FIQ and IRQ both occur at same time.now according to priority FIQ will be handled then IRQ but my question is that how it will handled IRQ after return from FIQ i means what will be process done at [...] read more
exception
arm
irq
arm7
fiq

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