Windows error 0x00000103, 259

Detailed Error Information

NO_MORE_ITEMS[1]

MessageNo more data is available.
Declared inwinerror.h

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

MUP_FILE_SYSTEM[2]

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

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 Code259 (0x0103)

Questions

24votes
4answers

How to solve "BUG: scheduling while atomic: swapper /0x00000103/0, CPU#0"? in TSC2007 Driver?

I found tsc2007 driver and modified according to our needs. Our firm is producing its own TI DM365 board. In this board we used TSC2007 and connected PENIRQ pin to GPIO0 of DM365. It is being seen OK on driver. when i touch to touchscreen cursor is moving but at [...] read more
c
linux-kernel
6votes
4answers

Windows 7 fails to install

I'm upgrading from Vista SP1 (which was actually upgraded from XP over a year ago) to Windows 7 RTM (64-bit Ultimate to 64-bit Ultimate). After 4 hours or so, the install fails with the message "This version of Windows could not be installed, Your previous version of Windows has been [...] read more
windows-7
windows-vista
3votes
0answers

ABI cross-checking

I am looking for some way to cross-check the compatability of two differing libraries, which should share the same base symbols. So, I have libCommon, libA and libB and my application. libB uses symbols from libCommon as does libA. I compile both into my application, and then find that the [...] read more
c++
mingw
abi
2votes
0answers

PHP CGI - misbehaved by not returning a complete set of HTTP headers

I have IIS7 and trying to render a sample PHP script. Please note that I have windows authentication set as ON: <?php echo "Content-Type: text/html"; echo "\n"; echo "BEGIN\n"; echo "END"; ?> But I get the below error: HTTP Error 502.2 - Bad Gateway The specified CGI application misbehaved by [...] read more
php
iis-7
1vote
0answers

In-place upgrade to Windows Server 2012 fails with 'Failed to CoCreate IPersistAppItemsState object' messages

I am encountering problems attempting to upgrade a server from 64-bit Windows Server 2008 "in-place" to Windows Server 2012 (not R2). The errors are similar to: [shmig] Failed to CoCreate IPersistAppItemsState object, hr=0x80040154 I have searched the web for suggestions and for the specific error messages. I have tried most [...] read more
windows-server-2012
upgrade
1vote
2answers

Microchip HID_PnP_Demo, WinForm to WPF

I've been trying to learn about WPF since I've been using VB.NET and WindowsForm for the past 10 years in a very few small projects. I'm planning a simple interface to control my house with a PIC18F97J94. Microchip provides an example (That's part of the MLA solution, it's in C# [...] read more
c#
.net
wpf
vb.net
winforms
1vote
0answers

PHP SMPP delivery report deliver_sm_resp not receiving?

<?php /* File : smppclass.php Implements : SMPPClass() Description : This class can send messages via the SMPP protocol. Also supports unicode and multi-part messages. License : GNU Lesser Genercal Public License: http://www.gnu.org/licenses/lgpl.html Commercial advertisement: Contact info@chimit.nl for SMS connectivity and more elaborate SMPP libraries in PHP and other languages. [...] read more
php
0votes
2answers

How to turn on LED on stm32 board using assembly language that generated by llvm?

My English skill is poor because I'm not a native English speaker. Please understand. I compiled some test code that operating alright in IAR with LLVM infra but the generated code was not operated on my test board. Detail are as follows. TEST GOAL I want to see operating the [...] read more
makefile
llvm
cortex-m3
segger-jlink
stm32l152
0votes
0answers

umdf 2 upper filter driver for camera

I'm trying to develop an upper filter driver for my camera. I'm having trouble involving the INF file for installation as it keeps failing. The driver is a UMDF 2 driver. I used devcon to install the driver in my system but it keeps failing with the log No matching [...] read more
wdf
filter-driver
umdf
0votes
0answers

PWM Missing interrupts on 5121 GPT peripherical

I am trying to operate a custom Linux driver for the MCP5121 GPT peripherical unit working as a PWM. The driver settles an interrupt service with the intention to reload a new duty cycle with every hit. I have checked that the GPT interrupt vector is properly installed and serviced [...] read more
linux
powerpc
pwm
0votes
1answer

Config LPC4357 EMC for 32MB SDRAM

I'm using uVision KEIL MDK 5.22 and LPC4357 (CortextM4F 204MHz). I want to config EMC (External memory controller) of LPC4357 to drive IS42S32800J-6TL SDRAM. It's a 256Mbit 2Meg X 32 X 4 banks sdram with 32bit data bus. My problem is that i can't use whole of 32MByte of this [...] read more
arm
keil
lpc
0votes
1answer

Calling spi_write periodically in a linux driver

I am writing a driver for an LCD display. According to the application note, I need to write a dummy SPI write to the command periodically to maximize its contrast. To accomplish this, I set up a timer and attempt to write the contrast-maximizing 2-byte dummy command from the timer [...] read more
c
linux
driver
atomic
periodic-task
0votes
1answer

Two addresses in kernel Call Trace

In the below call trace, I see two address before each function name in the call trace. Found that the second address is the next Instruction address from where the execution continues after the called function return. What is the first address ? Also any hint on how to debug [...] read more
linux
linux-kernel
kernel
linux-device-driver
system-calls
0votes
1answer

JavaScript number to 32 bit int equivalent

I would like to "convert" a number in JS to its C style int equivalent. For example: 259 -> 0x00000103. More specifically I need to send an int as a packet across a socket to a C++ application. So on C side I can simply do a C style cast [...] read more
javascript
node.js

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