Windows error 0x0000003D, 61

Detailed Error Information

PRINTQ_FULL[1]

MessageThe printer queue is full.
Declared inwinerror.h

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

INTERRUPT_EXCEPTION_NOT_HANDLED[2]

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

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 Code61 (0x003d)

Questions

8votes
2answers

MinGW-W64 linker skipping incompatible files when searching for third-party static libraries

I'm on Windows 7 64-bit, and I'm compiling with g++ from MinGW-W64. I'm trying to compile an application that I wrote on a Unix computer. I'm running into problems, however, when I try to link against certain third-party lib<name>.lib files. Specifically, I need to link to ROOT libraries. The linker [...] read more
c++
windows
linker
g++
mingw-w64
4votes
1answer

OpenCV detectMultiScale() error in C++

So I was trying to learn how to do facial recognition using OpenCV v3.0. Now after confirming that the camera can actually runs and that my XML files load. I began by uncommenting the code line by line until I found the error in line 64. face_cascade.detectMultiScale(frame_gray, faces, 1.1, 2, [...] read more
c++
opencv
computer-vision
2votes
1answer

Windows 8 application(Windows store app) suddenly terminates

I have created windows store app on windows 8 RTM version. Then I moved the application to run on Windows 8 pro with visual studio 12 Express. upon running the code it gave lot of errors(It was running fluently on RTM version), somehow I removed all errors and application is [...] read more
windows-8
microsoft-metro
1vote
3answers

On some boots, I get a 0x0000003d BSOD

Recently built a new rig with these specs: * Asus p8z68-v pro * Corsair Vengeance 1600Mhz 2x4GB * i5 2500k Now running at stock whenever I log in to windows 64bit it will run for a few minutes before blue screening, however I can manage to get a stable boot [...] read more
bsod
hardware-failure
1vote
0answers

Cassandra throws unknown error while creating column family through CLI or Astayanx client

I am trying to use chunked object store of cassandra and when I am trying to create compatible column family for the same, using CLI or Astyanax client, it throws this error: INFO 12:26:31,175 Create new ColumnFamily: org.apache.cassandra.config.CFMetaData@321f321f[cfId=1000,ksName=TESTKEYSPACE1,cfName=updatedstorage,cfType=Standard, comparator=org.apache.cassandra.db.marshal.UTF8Type,subcolumncomparator=<null>,comment=,readRepairChance=0.1,dclocalReadRepairChance=0.0,replicateOnWrite=true,gc GraceSeconds=864000,defaultValidator=org.apache.cassandra.db.marshal.UTF8Type,keyValidator=org.apache.cassandra.db.marshal.UTF8Type,minCompactionThreshold=4,maxC ompactionThreshold=32,keyAlias=<null>,columnAliases=[],valueAlias=<null>,column_metadata={},compactionStrategyClass=class org.apache.cassandra.db.compaction.Size TieredCompactionStrategy,compactionStrategyOptions={},compressionOptions={sstable_compression=org.apache.cassandra.io.compress.SnappyCompressor},bloomFilterFpCha nce=<null>,caching=KEYS_ONLY] Unhandled exception Type=Segmentation error vmState=0x00000000 J9Generic_Signal_Number=00000004 [...] read more
cassandra
thrift
astyanax
0votes
1answer

Windows Phone App crashes after Launcher.LaunchFileAsync when downloaded from store

I have a strange problem, if I deploy my app through visual studio as debug or release version all is working well. But if I publish it to the store and download it from there the app crashes after Launcher.LaunchFileAsync or FileOpenPicker. When my app launches for example the default [...] read more
windows-phone
windows-phone-8.1
windows-phone-store
0votes
1answer

Exception Codes: KERN_INVALID_ADDRESS at 0x0000003d

I am using address book framework for my application and I have got crashes on that code. That code is shown below +(NSMutableArray *)getcontactdetails { [self current_function_name:@"Inside getcontactdetails"]; NSMutableArray *list = [[NSMutableArray alloc] init]; ABAddressBookRef addressBook; CFArrayRef allSources; addressBook = ABAddressBookCreate(); ABRecordRef source = ABAddressBookCopyDefaultSource(addressBook); allSources = ABAddressBookCopyArrayOfAllPeopleInSourceWithSortOrdering(addressBook, source, kABPersonFirstNameProperty); [...] read more
iphone
addressbook

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