Windows error 0x00000083, 131

Detailed Error Information

NEGATIVE_SEEK[1]

MessageAn attempt was made to move the file pointer before the beginning of the file.
Declared inwinerror.h

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

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 Code131 (0x0083)

Questions

10votes
0answers

Debugging with Visual Studio Code on OSX Not Working Without Manual Path

I'm trying to debug a dotnet core project on OSX and keep getting a reference error that it cant find the required library. A fatal error was encountered. The library 'libhostpolicy.dylib' required to execute the application was not found in '/Users/Chris/Google Drive/Repos/project/src/project.api/bin/Debug/netcoreapp1.0'. WARNING: The target process exited without raising a [...] read more
macos
asp.net-core
visual-studio-code
omnisharp
4votes
4answers

From a huge enumeration, I try to make a function to apply the right action without using a switch body by using some template tricks

I have an enum type with 1223 elements. I had a function with 1222 cases and a default case in a switch block. If I want to modify some elements in the enum type, I also need to modify that function. Worse, I may have more than one function with [...] read more
c++
templates
c++11
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

Instruction after paging is enabled doesn't appear to execute

When I have to setup the EIP register, the program doesn't jump to the correct position. I'm expecting that jmp *%ecx jumps at the right spot in memory setting EIP to around 0xC0100000 (label: StartInHigherHalf) using LEA. I don't think that kmain is necessary because the problem is before it [...] read more
assembly
x86
paging
bootloader
osdev
2votes
3answers

Using Printf to display on serial port of an ARM microcontroller

I would like to use printf to diplay text on a serial port of an ARM microcontroller. I am unable to do so. Any help is appreciated. My init_serial looks like this void init_serial (void) { PINSEL0 = 0x00050000; /* Enable RXD1 TxD1 */ U1LCR = 0x00000083; /*8 bits, 1 [...] read more
embedded
serial-port
printf
microcontroller
1vote
1answer

IOS Air Application crashes without info

our team has been struggling for 2 weeks (Working and Personal), with the following issue regarding Ios deployment and Adobe Air. Below is a detailed message entailing the Application, our issue. If anyone can help us in debugging this task we'd greatly appreciate it. The team is using IntelliJ/Flashbuilder setup [...] read more
ios
actionscript-3
flash
air
segmentation-fault
1vote
0answers

Problems with asm code inside a c script (at linking with other asm script)

i will explain my problem... I'm coding a kernel in c + assembly, and when I coded some asm in-line in the main c script with gcc as compiler I had this problem: All looked fine, the script compiled as always, without errors or warnings, but when I tried to [...] read more
c
gcc
assembly
linker
ld
1vote
1answer

Entry point isn't in a segment

I just finished higherHalf in qemu. But for some reason gives me the error On Virtual Box , and Bochs: entry point isnt in a segment. please press any key to continue . . . But in Qemu it works all fine. Well here is my linker script where i [...] read more
assembly
linker
x86
osdev
entry-point
0votes
1answer

Reduce flickering when using SetWindowPos to change the left edge of a window

Update 1: Here's the simplified version: So I have a special fixed-size child window that I want to make it stay at the right side of the resizable main window. When users resize the main window by dragging the left/right edge of it, WM_WINDOWPOSCHANGED is sent, the child window will [...] read more
winapi
resize
flicker
0votes
1answer

Cant display Upper and Lower Memory

The OS Dosent display the upper and lower memory for some reason. As you can see here in Detecting Memory Wiki : http://wiki.osdev.org/Detecting_Memory_(x86)#Memory_Map_Via_GRUB , it says > Refer to mbd->mem_lower for conventional memory (e.g. physical addresses > ranging between 0 and 640KB) and mbd->mem_upper for high memory (e.g. from > [...] read more
memory-management
x86
ram
osdev
0votes
0answers

Triple Fault While Enabling Higher Half Kernel

I get a triple fault when i try to enable Higher Half Kernel in my OS. Basically this is my linker.ld: /* The bootloader will look at this image and start execution at the symbol designated as the entry point. */ ENTRY(loader) SECTIONS { /* The kernel will live at [...] read more
assembly
linker
x86
paging
osdev
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

Auto it click exception: access violation reading 0x00000083

My code should open a window from taskbar and then click a control from it. The problem is that after it opens the window I get the error : "exception: access violation reading 0x00000083".I am new to Python (and in programing) and I have no ideea what that means or [...] read more
python
exception
exception-handling
automation
autoit
-1votes
1answer

Linker error setting loading GDT register with LGDT instruction using Inline assembly

I was compiling my prototype of prototype of a kernel (sounds weird, but it really doesn't matter) and in the installation I need to link the ASM file to a C file compiled with gcc to get a executable that could be used as kernel. The problem is that, after [...] read more
gcc
assembly
x86
kernel
osdev

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