Windows error 0xC0000010, -1073741808

Detailed Error Information

HRESULT analysis[1]

FlagsSeverityFailure
Reserved (R)true
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[1][2]
DescriptionThe default facility code.[1][2]
Error Code16 (0x0010)

Questions

5votes
0answers

Silent Process Exit due to KiSchedulerApcTerminate

I have a Windows 10 machine where some UI process runs happily for days until it silently exits without any visible exception. I have enabled ETW tracing but pretty much all call stacks come up with ???? marks. I suppose there was no proper ETW provider rundown happening in this [...] read more
windows
kernel
4votes
1answer

Windows 8 and SMB2 Issues

We're playing with the consumer preview of Windows 8 and having issues accessing some network shares in our environment. Basically, when I attempt to access a share directly (\[SERVER].[DOMAIN].[NETWORK]\Share$) I get 'An extended error has occured'. The shares reside on an EMC Celerra system. Sorry, I don't really have much [...] read more
windows
network-share
server-message-block
windows-8
4votes
1answer

How to interface with the NT mount manager to assign a driveletter?

I'm attempting to replace some legacy DefineDosDevice userspace code (which doesn't work on Vista with Administrator users due to the fact that the elevated and normal session are represented by different DosDevice stores, therefore creating the rather strange scenario that the drive is visible if created from unelevated processes, but [...] read more
c
windows
device-driver
wdk
2votes
3answers

"Can't connect to this network" troubleshooting

After much research and testing of other answers found on SuperUser and online I cannot resolve: * All the devices that I'm connecting to my router are connecting/working normally, except one PC. * These devices include 3 android phones, 1 MacBook, 1 PC Laptop and two Android tablets. All working [...] read more
networking
wireless-networking
wireless-router
connection
2votes
1answer

How to properly register a completion routine for an internal device control request for a lower filter disk driver?

I'm currently writing a lower filter disk driver to capture SCSI commands, and to measure the performance of each command. Currently, my driver is capable of capturing the SCSI request, and passing it down to the next driver. However, when I tried to register a completion routine, I get the [...] read more
windows
kmdf
filter-driver
1vote
0answers

gcc: The application was unable to start correctly (0xc0000010)

I've been searching around for an answer to this for a while but haven't been able to find a solution. Basically, I'm using MinGW and when trying to compile any piece of C code, I get this message: "The application was unable to start correctly (0xc0000010)." I've been using the [...] read more
c
gcc
compilation
mingw
console2
1vote
1answer

PSTCollectionView crashes with EXC_BAD_ACCESS

I use PSTCollectionView in my app. All works perfectly until I adds my subclass of PSTCollectionViewController into UINavigationController chain. When I tap navigation controller's back button, app crashes with EXC_BAD_ACCESS (code=1, address=0xc0000010) P.S.: I use ARC. Thanks for help. #0 0x01592d15 in objc_retain () #1 0x00030dde in -[PSTCollectionView setDelegate:] at [...] read more
iphone
objective-c
cocoa
exc-bad-access
0votes
0answers

BSOD STOP 0xF4 Dump Fail 0XC0000010

System Info: Laptop: HP Envy 15 3040nr OS Version: Microsoft Windows 7 Home Premium, Service Pack 1, 64 bit Processor: Intel(R) Core(TM) i7-2670QM CPU @ 2.20GHz, Intel64 Family 6 Model 42 Stepping 7 Processor Count: 8 RAM: 8139 Mb Graphics Card: AMD Radeon 6600M and 6700M Series, 1024 Mb Hard [...] read more
windows-7
drivers
bsod
safe-mode
0votes
1answer

NtDeviceIoControlFile (Query IP Address Entries) - STATUS_INVALID_DEVICE_REQUEST

TASK I am trying to enumerate the current ip interface entries using NtDeviceIoControlFile and IOCTL_TCP_QUERY_INFORMATION_EX flag. CODE NTSTATUS GetIPAddresses(HANDLE TcpFile, TDIEntityID InterfaceID, IPAddrEntry* Entries, ULONG NumEntries) { TCP_REQUEST_QUERY_INFORMATION_EX_WOW ReqWow64; IO_STATUS_BLOCK IOBlock = {0, 0}; NTSTATUS Status = -1; ReqWow64.ID.toi_class = 0x200; ReqWow64.ID.toi_type = 0x100; ReqWow64.ID.toi_id = 0x102; ReqWow64.ID.toi_entity = InterfaceID; [...] read more
c++
winapi
tcp

Comments

Leave a comment

(plain text only)

Sources

  1. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  2. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0