This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
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.
I've got a crash-dump file (my 32-bit windows application has crashed on a customer computer). Exception code is 0xE06D7363. So, I found this article from MSDN blogs about decoding the exception params. But a recipe from the article doesn't work for me: 0:000> .exr -1 ExceptionAddress: 753ad36f (KERNELBASE!RaiseException+0x00000058) ExceptionCode: e06d7363 [...] read more
I have created a simple Bluetooth device using following components * HC05 module * Arduino Uno board (with re-programmable micro-controller) I am wondering if it is possible to send commands from my BT device, as if these commands were sent from Bluetooth headset? What I mean is: * we send [...] read more
The process got crashed unstably in Windows 7. I use !analyze -v command in WinDbg for exception analysis. It tells below information. The exception is actually thrown by WaitForSingleObject function which is called by IrsSim!IrsNet_BlockOutput. WinDbg's exception analysis told me that it was INVALID_POINTER_READ error. For the calling code, the [...] read more
In LLDB, I regularly encounter the following error log, while trying to set break points. (lldb) break set -n main error: unable to find CIE at 0x00000020 for cie_id = 0x00000004 for entry at 0x00000020. error: unable to find CIE at 0x00000058 for cie_id = 0x00000004 for entry at 0x00000058. [...] read more
I am trying to compile a Fortran 90 code that basically solves a very large system of differential equations (around 5000 ODEs). In order to increase the precision of the solver, I have to increase the size of the solution arrays, and I am running into a problem. I am [...] read more
This question is a prologue to the one I previously asked here. I'm working on an IP camera project that is based on TI OMAP-L138. All in all, the H264 encoded video is streamed via live555 libraries over RTSP. For Live555 I'm using deviceSource based framed source. However, when I [...] read more
This question was directed specifically to fadden, and then re-directed to nikhilelite, who posted the question "Media codec decoding without surface causes crash". I don't see any followups in the aforementioned post, so I am asking the question here. Now I am re-directing this question again to fadden, or anyone [...] read more
I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
i have develop game but after some time application was crashed and restart. when application crashed it show the message fatal signal 11 error. Main Activity Fatal signal 11 (SIGSEGV) at 0x00000058 (code=1), thread 8100 (l_jacksorbetter) package com.vs.final_jacksorbetter; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.content.pm.ActivityInfo; import android.graphics.Color; [...] read more
I have written code for a uPP device driver to be used with an OMAPL138 based custom board for data acquisition through a camera lens. The code for my device driver is: /* * A device driver for the Texas Instruments * Universal Paralllel Port (UPP) * * Modified by: [...] read more
EDIT This problem is related to ASIHTTPRequest. When I remove the ASIHTTPRequest async block, the app does not crash on my device any more. I can run the ASIHTTPRequest code on my device, loaded from Xcode fine. It's just when I upload the archive from TestFlight and try to run [...] read more
I'm trying to set kEdsPropID_ImageQuality property in a small c++ application. I can set some other properties (kEdsPropID_ISOSpeed and kEdsPropID_SaveTo). // set ISO 400 int intISO = 0x00000058; EdsSetPropertyData(camera, kEdsPropID_ISOSpeed, 0, sizeof(intISO), &intISO); The code above works OK. But next code don't: // change format from RAW to JPEG EdsUInt32 [...] read more
I have used different RTSP links so far to run on Vitamio player in Android. I am using latest Version f Vitamio..I am using Sample application of Vitmaio. Only HTTP, MMS and RTMP links are working.. following is the code.. VideoView.java public class VideoViewDemo extends Activity { /** * TODO: [...] read more
hy, i'm trying to copy 2 arrays from global memory to shared memories: the global arrays type is double and they have 32 elements everyone. the grid is 1D and the blocks are 1D. the grid dimension is 10000 and NumberThreadPerBlock is 32 __global__ void kernel_0(double px[], double py[], int [...] read more
I'm pretty new to using WinDbg, but recently my application started having issues, but only on Windows 7 machines (it runs fine the first time the PC is started but crashes or just disappears silently each time after). I got the mdmp file, but find myself somewhat lacking on how [...] read more