crash

Eclipse CDT crashes java

删除回忆录丶 提交于 2019-12-23 07:16:48
问题 I downloaded fresh Eclipse CDT, added a C++ project, and after a few minutes eclipse crashed. It said "javaw.exe returned -1", and Eclipse crashes silently. The .metadata/.log file sometimes contains nothing, and sometimes contains a few Java exception in the C/C++ indexer which certainly doesn't explain a silent crash. How can I further debug this phenomena? I've no clue what to look for next. I'm running the latest stable Eclipse CDT (7.0.1), with Windows 7 64bit, with the latest stable JDK

Eclipse CDT crashes java

穿精又带淫゛_ 提交于 2019-12-23 07:16:30
问题 I downloaded fresh Eclipse CDT, added a C++ project, and after a few minutes eclipse crashed. It said "javaw.exe returned -1", and Eclipse crashes silently. The .metadata/.log file sometimes contains nothing, and sometimes contains a few Java exception in the C/C++ indexer which certainly doesn't explain a silent crash. How can I further debug this phenomena? I've no clue what to look for next. I'm running the latest stable Eclipse CDT (7.0.1), with Windows 7 64bit, with the latest stable JDK

How to locate app crash logs in Android phone?

夙愿已清 提交于 2019-12-23 07:11:09
问题 If any Android app crashes some crash logs are generated on behalf of that app. How to find the location of such crash logs. I want crash logs inside the Android device, not really using Logcat to see the crash logs. 回答1: In logcat stack trace, you can find exception/error details. Say for an example, 04-23 08:00:07.524: E/AndroidRuntime(1384): Caused by: java.lang.NullPointerException 04-23 08:00:07.524: E/AndroidRuntime(1384): at com.datumdroid.android.ocr.simple.SimpleAndroidOCRActivity

Android App crash with BaseGameActivity

余生长醉 提交于 2019-12-23 07:08:38
问题 So, somewhat hard to ask. I wanna use the google play game service to access a leaderboard for my game. I tried to use BaseGameActivity like it is shown here Accessing the Games APIs Tried a few things, did some search but cannot figure out the problem. My App crashes when the BaseGameActivity is started. Log error shows: 03-10 17:44:54.071: E/AndroidRuntime(31435): FATAL EXCEPTION: main 03-10 17:44:54.071: E/AndroidRuntime(31435): java.lang.IllegalStateException: A fatal developer error has

iOS game crashes after pressing Share button only on iPad

这一生的挚爱 提交于 2019-12-23 07:07:07
问题 My iOS game crashes after the share button is pressed. This button then gives the users the option to post/send a pre-written text line and a link to the app to Twitter, FB, Mail, Messages,etc. I am able to replicate the crash on the all iPad simulators running iOS 8.2. Here is the symbolicated crash report: https://www.dropbox.com/s/yyo4ouniegt6s0e/dotSports.crash?dl=0 In addition: This is from the output box in Xcode when taking the actions to produce the crash. *** Terminating app due to

Detect/Redirect core dumps (when a software crashes) on Windows

﹥>﹥吖頭↗ 提交于 2019-12-23 05:48:05
问题 For my work, I need to create a service that will detect an abnormal program termination and, instead of displaying a message to the user (default behavior), send the generated core dump to a remote server. I'm pretty sure this can be done, but I have absolutely no clue on where to start. Is there any API/registry settings for this ? Thank you. 回答1: One method is to install an Unhandled Exception Filter and then write a minidump from it which you can then upload to some place of your choosing

IDLE crash when using multiprocessing on Mac OSX

℡╲_俬逩灬. 提交于 2019-12-23 05:46:14
问题 If I run this simple code in IDLE in Python 2.7.8, it will pop a window saying "The program is still running! Do you want to kill it?". from multiprocessing import Pool def foo(x): return x**2 if __name__ == '__main__': pool = Pool(2) pows = pool.map(foo, range(10)) print pows Even if I do kill or not (it will ask twice) nothing will happen. I used to use Windows and I've just recently started using Mac OSX (10.9.4), and I don't know if I'm missing something here. If I run the same code

Core Data Migration Fail [duplicate]

坚强是说给别人听的谎言 提交于 2019-12-23 04:55:08
问题 This question already has answers here : Fix Core Data Fail (3 answers) Closed 6 years ago . My app was recently crashing on the app store because I did not migrate the data. So I was following this tutorial on Core Data Migration but it does not seem to be working: 1.I created a new model version for Core Data and set it to the current version... 2.I added the following code: - (NSPersistentStoreCoordinator *)persistentStoreCoordinator { if (_persistentStoreCoordinator != nil) { return

.net application crashes unless renamed

强颜欢笑 提交于 2019-12-23 04:52:11
问题 I have .Net application developed with C#, using C++ library, running on 64-bit Windows 7 OS but in 32 bit mode. Everything was fine until recently I started migration of this application to 64-bit mode. During work on this I returned to my 32-bit original version and now it does not work. When launching it crashes after several seconds barely opening dialog box notifying something about uder-defined breakpoint and then completely disappears on its own. What interesting is that when I just

Visual Studio 2010 crashes after pasting simple code?

删除回忆录丶 提交于 2019-12-23 04:21:39
问题 Start by creating a new console application (VB.NET). Paste the following code in Sub Main : Dim AAAAAAAAAAA = BBBBBBB Put the cursor before Sub Main and press Delete key on the keyboard. VS crashes: If the number of A s or B s is less - it won't crash. Same or more - it will. Why? Also, can anyone else reproduce it? I am able to reproduce 100% of the time, on three different workstations, one is Windows 7 x64, another is Windows Server 2012, and also my home PC (Windows 7 x64), where I am