Windows error 0x00000046, 70

Detailed Error Information

SHARING_PAUSED[1]

MessageThe remote server has been paused or is in the process of being started.
Declared inwinerror.h

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

DEREF_UNKNOWN_LOGON_SESSION[2]

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

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 Code70 (0x0046)

Questions

8votes
2answers

Problem switching to v8086 mode from 32-bit protected mode by setting EFLAGS.VM to 1

I'm in 32-bit protected mode running at current privilege level (CPL=0). I'm trying to enter v8086 mode by setting EFLAGS.VM (Bit 17) flag to 1 (and IOPL to 0) and doing a FAR JMP to my 16-bit real mode code. I get the current flags using PUSHF; set EFLAGS.VM (bit [...] read more
assembly
x86
nasm
x86-64
osdev
6votes
2answers

Why does this method throw a Segmentation fault?

I am using the jsmn JSON parser (source code) to get some text from a JSON. jsmn stores the data in tokens, but the tokens do not hold any data, they just point to the token boundaries in JSON string instead. For example, jsmn will create tokens like: * Object [...] read more
c
json
parsing
segmentation-fault
token
2votes
1answer

Can't load any egg when embedding Chicken Scheme library into C project

I'm working on a chicken library that I use in a C project. When I try to load eggs (e.g. (use intarweb)), the runtime complains about failing to load the egg. (lldb) run Error: (require) cannot load extension: intarweb Call history: bridge-connector.scm:6: ##sys#require <-- Process 56172 exited with status = [...] read more
chicken-scheme
0votes
0answers

Interpret fdisk output for HPE ProLiant ML350

I am a newly baked server owner and I bought the above mentioned model which nominally has 4*1.2TB of physical disks. I was wondering if my amateurish ubuntu installation "caught" them all. I have however some trouble interpreting the output of fdisk: > sudo fdisk -l Disk /dev/sda: 2.2 TiB, [...] read more
ubuntu
hp-proliant
fdisk
0votes
0answers

Windows 10 does not let set screen brightness for in a power plan

I've recently got a brand new laptop with Windows 10 Home edition installed. I haven't had any experience with the OS before, so i might be missing something. In Windows 7 I could manage the screen brightness for a laptop separately for different power options (e.g. 70% when the laptop [...] read more
windows-10
power-management
0votes
0answers

What is a better way to turn a user-inputted hexadecimal string into a binary in MIPS?

I'm taking a computer architecture class, and they're having us use MIPS assembly. Our current assignment is asking us to take a user-inputted hex string, and turn it into a binary one. The code I've written "works", but it's horrible, to say the least. What would be a better approach [...] read more
assembly
mips
mars-simulator
0votes
0answers

Is get_user_pages portable on ARM64?

I have a program using get_user_pages to shared data between kernel and user space, and it works good on x86 (linux 5.4). When I migrate to aarch64(ARM64) aws-ec2, program failed at get_user_pages. I'm pretty sure that its first argument which I passed is in user space. (00000000fd40166c) But in kernel [...] read more
linux
arm
0votes
0answers

Completing/Amending Recurring Task (iOS: Reminder(s)) on iPhone results in Incorrect RecurrencePattern?

When an iOS Device tries to complete an Outlook/Exchange Recurring TASK (i.e. which appears as a Reminder in the iOS Reminders App), or even tries to amend that Recurring Task, the RecurrencePattern MAPI Property seems to get Set or Re-Set to an Incorrect value, which can result in MAPI Errors. [...] read more
ios
outlook
mapi
activesync
0votes
1answer

Same HTTP request passes with CURL_CLI but fails with LIBCURL

Am using libcurl to communicate with Amazon S3. GET calls are success whereas PUT (for uploading files) calls are failing with 403. PUT call with same headers when ran through CURL-CLI are success. I have disabled certificate checking. [[ curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0) ]] Using CURLOPT_DEBUGFUNCTION option as specified in https://curl.haxx.se/libcurl/c/CURLOPT_DEBUGFUNCTION.html, [...] read more
c
curl
libcurl
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
0answers

What causes the kernel oops in the "make -j4" process

I am using an embedded board with 4 armv8 cores.(xilinx zynqmp) I found that using make -j4 to compile software will appear kernel oops. The stack of oops is almost the same,but the type of oops is different,i have seen three types: * undefined instrction * unable to handle kernel [...] read more
linux
gcc
linux-kernel
arm
0votes
1answer

UWP resources not found

I have an UWP application which is working fine on various machines but on one particular machine, it is crashing silently. When I debugged the installed app through visual studio I figured out that it is not getting the resources on the XAML file e.g {ThemeResource ComboBoxDropdownContentMargin} {Binding TemplateSettings.DropDownContentMinWidth, RelativeSource={RelativeSource [...] read more
c#
.net
xaml
uwp
0votes
1answer

Register value - MIPS

The language is MIPS. $s2 = 0x00000046 ; $s1 = 0x000038c What will be the $s2 value in Hex after the following code ? : add $s2, $s1, $s2 srl $s1, $s1, 4 or $s2, $s1, $s2 Can some one show me the way ? thnx ! read more
programming-languages
mips
-1votes
2answers

Debug int 13h 02h function of boot sector in bochs

I want to debug a boot sector and it reads the floppy disk. I debug it in bochs and want to check if it reads successfully or failure. I know the AH register can return the code, but I also want to see what it reads, so I want to [...] read more
assembly
x86
bios
bochs
disk-io

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