Windows error 0x00000105, 261

Detailed Error Information

AGP_GART_CORRUPTION[1]

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

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 Code261 (0x0105)

Questions

1vote
0answers

What is the difference between address space size and the "bound" when using base and bounds?

Tool used: relocation.py From the homework of chapter 15 - Operating Systems three easy pieces (last page): > 3. Run with these flags:-s 1 -n 10 -l 100. What is the maximum value that > base can be set to, such that the address space still fits into physical > [...] read more
operating-system
virtual-memory
1vote
0answers

FDT (Flattened Device-Tree): Property name (strings): Comma terminated string instead of NUL character

I have started to write a library for reading FDT (DTB) format files, but run into a problem with a test DTB file. The DTB file is form a board (Digilent ZYBO-Z7) which I own. I compiled the source device-trees from the actual Linux Kernel. There are two property names [...] read more
linux-kernel
reverse-engineering
device-tree
bsp
1vote
0answers

How to avoid generation of extra assembly instruction by gcc compiler for an inline assembly function

I have two questions about generation of assembly code by gcc as a result of using inline assembly function in C file. Let me first explains my situation/code and then I will ask questions. Situation: I have defined following macro NBL2SPM which calls the mySimMagic2() function. #define NBL2SPM(compactCode,MemAdr) mySimMagic2(SIM_CMD_USER,compactCode,MemAdr) mySimMagic2() [...] read more
c
linux
gcc
x86-64
inline-assembly
1vote
0answers

Understanding GCC generated map files

I'm trying to write a script that parses .map files generated by GCC and help me figure out what the footprints of various libraries are in memory. (Github repository of what I have so far) I'm trying to understand what the following means / how it should be read : [...] read more
c
gcc
linker
msp430
0votes
2answers

Application Stops while getting IMEI Number

I am trying to get IMEI number of android device but as I call this method application stops and device says app stopped unfortunately here is the method public void startService(View view) { startService(new Intent(getBaseContext(), MyService.class)); TextView tv = (TextView) findViewById(R.id.textView1); tv.setText("Started"); TelephonyManager telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE); String S =telephonyManager.getDeviceId(); TextView [...] read more
android

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