Windows error 0x00000049, 73

Detailed Error Information

PAGE_FAULT_WITH_INTERRUPTS_OFF[1]

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

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 Code73 (0x0049)

Questions

7votes
1answer

"netcfg wlan0 up" Not working from application

I have custom hardware and custom android operating system. Devices are unable to stay connected to the Wireless network after going through day to day workflow. I have used WifiManager.WifiLock in application to make sure hardware running up. But After I have found that my custom OS not able to [...] read more
android
networking
native
ifconfig
7votes
1answer

get non connected devices, when my device are in tethering mode

i am activating tethering mode with this code: private void setWifiTetheringEnabled(boolean enable) { WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE); Method[] methods = wifiManager.getClass().getDeclaredMethods(); for (Method method : methods) { Log.e("teste", method.getName()); if (method.getName().equals("setWifiApEnabled")) { try { method.invoke(wifiManager, null, enable); } catch (Exception ex) { } break; } } } and i [...] read more
android
android-wifi
tethering
3votes
2answers

Eclipse Android X86 Cannot connect to 127.0.0.1

Running Eclipse Build id: 20110615-0604 Android SDK & AVD Manager (setup in eclipse) Android X86 2.3-RC1.eeepc.iso Oracle VM VirtualBox Version 4.1.2.r73507 (installed and running android) In the VM using Alt F1 and the command netcfg produces: Android root@eeepc:/ # netcfg lo UP 127.0.0.1 255.0.0.0 0x00000049 The path for Android is [...] read more
android
3votes
1answer

Need help correcting Access Violation with FFmpeg DLL

I'm trying to use the FFmpeg dll's using Visual Studio 2012 and I'm getting a run time access violation when I call avcodec_find_encoder. Here is the code: // TestFFmpeg.cpp : Defines the entry point for the console application. // #include "stdafx.h" extern "C" { #include "libavcodec\avcodec.h" #include "libavformat\avformat.h" } #define [...] read more
c++
dll
ffmpeg
visual-studio-2012
2votes
2answers

adb can't connect to 127.0.0.1:5555

I was trying to follow the instructions provided in this reply to the question of having a faster adb. However upon doing step 6, I run into the error unable to connect to 127.0.0.1:5555. The only difference in my set-up from the one described in the link is that I [...] read more
vmware
adb
1vote
1answer

How to know that camera is currently being used by another application with UWP?

I am trying to show error message "Cannot setup camera; currently being using" when there is already a process running the camera. I have the code that starts the preview using the MediaCapture and it works fine when running without another application using camera. I do get the exception 0x40080201: [...] read more
windows
camera
uwp
c++-cx
1vote
0answers

Android Broken eth0 Socket - Replace with USB eth1

The Android 4.4 device (radxa rock) in question has a broken ethernet socket due to forcing a slightly oversized plug in it. Im replacement I have a Usb-ethernet dongle connected fairy successfully - using adb I can do stuff like: netcfg eth0 down netcfg eth1 up netcfg eth1 dhcp setprop [...] read more
android
usb
ethernet
1vote
1answer

Android 127.0.0.1 (loopback) connection: Works on WiFi, fails with 3G/4G

My application embeds a local http server that can be accessed through the loopback device at URL: http://127.0.0.1:8080/ It works fine with WiFi enabled, it also works fine with no external network (no WiFi, no 3G) but it fails when WiFi is disabled and 3G enabled. Connecting through adb shell [...] read more
android
networking
mobile-webkit
loopback
3g-network
0votes
0answers

Defining vulkan shader entry point

My vulkan application is throwing an error while trying to create graphics pipeline exeption- Exception thrown at 0x03FCCCB2 (nvoglv32.dll) in VulkanSandbox.exe: 0xC0000005: Access violation reading location 0x00000049. at line- vkCreateGraphicsPipelines(mainDevice.logicalDevice, VK_NULL_HANDLE, 1, &pipelineInfo, nullptr, &graphicsPipeline); validation layer says that pName has to be defined- VUID-VkPipelineShaderStageCreateInfo-pName-00707(ERROR / SPEC): msgNum: -1282697375 - [...] read more
c++
visual-studio
graphics
nvidia
vulkan
0votes
0answers

How to generate crash report of application?

Currently i am using ARM DS-5 IDE for development the application for one arm based target device and for compilation ARM Compiler tool chain RVCT3.1 used. Thread X RTOS used in target device. After loading application in target device, it will crash accidentally after some time.So i want to know [...] read more
c
arm
rtos
ds-5
0votes
1answer

App Crashes with EXC_BAD_INSTRUCTION (SIGILL)?

Yesterday, I released a new version of my app and today i found, a lot of users that upgraded form old version, encountered a crash. After checking the crash log, Ii still can't find what the problem is and so, i come here to seek help. The crash log shows, [...] read more
ios
debugging
crash
0votes
0answers

Downloading and installing from App Store would fail?

I just release a new version of my app. But unfortunately the new version app crashes every time it launches. So I used a file tool, which could browse, copy and export files inside iPhone, to export the .ipa file of my app that crash. Then I find the archive [...] read more
ios
app-store
installation
0votes
1answer

wlan0 interface fails to fetch IP with udhcpc

I am using USB Wireless Adaptor of Realtek in Android Lollipop with RTL8192DU driver. I am able to scan the wireless network using iwlist wlan0 scan command . And I tried to connect to an open network and fetched the ip using udhcpc ,the output was bit confusing. I got [...] read more
linux
networking
wireless-networking
android
dhcp

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