crash

Crash on __pthread_kill [closed]

点点圈 提交于 2019-12-31 12:56:50
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Got the crash report below, but have no clue why it would be happening and how to fix it. SIGABRT ABORT at 0x000000019aa3258c libsystem_kernel.dylib __pthread_kill Thread : Crashed: com.apple.main-thread 0 libsystem_kernel.dylib 0x000000019aa3258c __pthread_kill + 8 1 libsystem_pthread.dylib 0x000000019aab516c

FATAL SIGNAL 11 (Sigsegv) at 0x00000000 (code=1)?

半城伤御伤魂 提交于 2019-12-31 12:51:40
问题 Why does this problem occur? public static String path; private VideoView mVideoView; mVideoView = (VideoView) findViewById(R.id.surface_view); mVideoView.setVideoPath(path); mVideoView.setMediaController(new MediaController(this)); mVideoView.requestFocus(); //... private int mLayout = VideoView.VIDEO_LAYOUT_ZOOM; @Override public void onConfigurationChanged(Configuration newConfig) { if (mVideoView != null) mVideoView.setVideoLayout(mLayout, 0); super.onConfigurationChanged(newConfig); }

How to send Android Crash report using ACRA

匆匆过客 提交于 2019-12-31 10:06:10
问题 Am trying to send crash report from my applicatio to my domain or Mail but failed still. To get the crash report in mail, I did @ReportsCrashes( formKey = "", mailTo = "abc@gmail.com" ) And the response is, Sending file 1372758321000-approved.stacktrace checkAndSendReports - finish To get the crash report in my domain, I did @ReportsCrashes( formKey = "", formUri = "http://www.abc.com/test1" ) And the response is, Sending file 1372856882000-approved.stacktrace Failed to send crash report for

Countdown Timer Excel VBA - Code crashed excel

随声附和 提交于 2019-12-31 07:22:17
问题 Could someone offer an insight into why this crashes my excel, i cant seem to work it out. Im trying to learn VBA and need some advice. sub timer() dim second second = 1.15740740740741e-05 'this is the amount excel counts as a second line1: application.wait "00:00:01" Range("a1").value = Range("a1").value - second if not range("D2").value = 0 then Goto line1 else Msgbox("Countdown ended") End if end sub 回答1: I'm sure you're not timing space shuttle launches or anything that critical. But if

Reproducible: Why does passing this object in C break my code?

那年仲夏 提交于 2019-12-31 05:29:21
问题 From my understanding C assumes all parameters are int's and it returns ints. I'd like to pass around this object but i have no idea how and AFAIK its the same size of int but it breaks. Here is the Reproducible code. In testc.c. Note: this MUST be in a C file. int test_c1() { return test_c3(test_c2()); } In testcpp.cpp #include <iostream> using namespace std; struct MyType{ int a, b; }; template <class T> struct WrappedPointer { T* lhs; public: void LHS(T*v) { lhs=v; } T* LHS() { return lhs;

What does this crash log means?

北城以北 提交于 2019-12-31 04:47:39
问题 I have already done some research on identifying crash logs but couldn't find solution: Here are my references: http://www.raywenderlich.com/23704/demystifying-ios-application-crash-logs http://developer.apple.com/library/ios/#qa/qa1747/_index.html How to view crash report on xcode 4.2 I do come to know that it is because of Memory Issue but how to find that particular? In my project there are 200 files also there are 4-5 third party libraries are being used. Here is crash log: Incident

Shutdown exception handling for Win32/C++

时光毁灭记忆、已成空白 提交于 2019-12-31 04:36:09
问题 I have a process that handles exceptions great. It calls: _set_se_translator(exception_trans_func); SetUnhandledExceptionFilter(UnhandledExceptionFilterHandler); _set_purecall_handler(purecallHandler); set_terminate(terminateHandler); set_unexpected(unexpectedHandler); _set_invalid_parameter_handler(InvalidParameterHandler); atexit(exitHandler); //ignored during an expected exit _onexit(onexitHandler); //ignored during an expected exit Anytime an exception happens, one of the handlers is

Connection Crash in mysql C++

社会主义新天地 提交于 2019-12-31 04:30:08
问题 Currently, I have implemented a program to write to a mysql database... I am using Xcode with c++as well. I have imported all the libraries correctly but I'm getting a BAD EXCESS error message on this line : con = driver->connect("tcp://127.0.0.1:3306", "root", "root"); What seems to be the issue? Heres the full program... #include <stdlib.h> #include <iostream> // Include directly the different // headers from cppconn/ and mysql_driver.h + mysql_util.h // (and mysql_connection.h). This will

WP8.1 application crashes on calling RequestProductPurchaseAsync

[亡魂溺海] 提交于 2019-12-31 01:11:49
问题 I'm writing Audio Player for Windows Phone 8.1 (Runtime) and I use IBackgroundTask for audio . I want to use in-app purchase , but applications crashes on calling var result = await CurrentAppSimulator.RequestProductPurchaseAsync(ProProductId); without any exceptions. This method is called within try-catch block. It happens when application already start IBackgroundTask by calling for BackgroundMediaPlayer.Current (happens after few seconds after call RequestProductPurchaseAsync ). If I call

What causes the VS 2010 SP1 WPF Designer to crash?

送分小仙女□ 提交于 2019-12-30 18:59:33
问题 We're experiencing crashes on various machines in the VS2010 WPF designer in the following scenario: VS 2010 SP1 installed 64 Bit Windows 7 Reference to NHibernate.dll (Version 1.2.0.712) To reproduce the Error, create a new WPF Solution, perform the following actions: create a new WPF solution open the main window, add a textbox to it, set some static text add a reference to FluentNhibernate.dll, Version 1.2.0.712 Clean and Rebuild the solution Open main window in designer again, edit text