crash

SendMessage TreeView TVM_GETITEM crashes that process

此生再无相见时 提交于 2021-02-07 10:18:07
问题 I am trying to access a TreeView running in another process. Many of the tree view messages work correctly. However, trying to use the TVM_GETITEM causes that other process to crash. The code below is a simple program that illustrates the crash. To get it to run, you will need some CHM help file. I'm using a CHM help file because hh.exe uses a TreeView control for the table of contents. The goal is to be able to get the a tree node's text. using System; using System.Collections; using System

Android emulator crash logs

旧时模样 提交于 2021-02-07 09:12:58
问题 I'm using jenkins with the android plugin but it seems that my emulator dies during the build. The logcat goes to the point when some activity is started but then nothing any more. So it clearly did not shut down properly. Is there some other log that I can enable to debug this issue? Might be caused by the emulator going out of memory. 回答1: Maybe you can start the Emulator with the -verbose or -logcat option. Have a look in the Debug section of the android emulator command line parameters.

CUDA - nvidia driver crash while running

北城以北 提交于 2021-02-07 08:39:27
问题 I run a raytracer in CUDA with N Bounces (each ray will bounce N times). I view the results using openGL. once N is small (1~4) everything works great. once i make N big (~10) each thread (about 800x1000) has to do a lot of computing and this when the screen goes black, and than back on, with the note that my nvidia crash. i searched online and think now that what cause it some sort of a watch-dog timer since i use the same graphic card for my display and my computing (computing takes more

CUDA - nvidia driver crash while running

瘦欲@ 提交于 2021-02-07 08:38:13
问题 I run a raytracer in CUDA with N Bounces (each ray will bounce N times). I view the results using openGL. once N is small (1~4) everything works great. once i make N big (~10) each thread (about 800x1000) has to do a lot of computing and this when the screen goes black, and than back on, with the note that my nvidia crash. i searched online and think now that what cause it some sort of a watch-dog timer since i use the same graphic card for my display and my computing (computing takes more

Android App crashes when testing release build (apk) but works in dev

拜拜、爱过 提交于 2021-02-05 11:45:29
问题 the app crashes when i press on an item in a FlatList, its supposed to navigate to that items screen but instead the app keeps crashing for some reason. It works in every stage of the process until when i drag and drop the apk file on the emulator or open it on my phone then it keeps crashing. Here is the flatlist: <Animated.FlatList data={listings} // to have all the data ref={ref} keyExtractor={(listing) => listing.id.toString()} renderItem={({ item,index }) => ( <Card title={item.title}

My app keeps crashing (Fatal exception)

时光怂恿深爱的人放手 提交于 2021-01-29 11:04:15
问题 my app opens with splash screen normally but cant proceed to home screen and crashes ! i'm trying to make tablayout (there is no error in code) this is the error through debugging : E/AndroidRuntime: FATAL EXCEPTION: main Process: com.foot.ws.worldcup, PID: 10249 java.lang.RuntimeException: Unable to start activity ComponentInfo{com.foot.ws.worldcup/com.foot.ws.worldcup.MainActivity}: android.view.InflateException: Binary XML file line #11: Binary XML file line #11: Error inflating class

Visual Studio 2008 crashes when displaying XAML view. How to get more information?

眉间皱痕 提交于 2021-01-29 07:27:51
问题 I am developing a Silverlight app using VS2008 Express. I have just implemented a new user control and have added it to a Grid. When I try to open a XAML view which contains this control, VS crashes and restarts. Where can I look for more information? Is there an event log in VS? Update I found my problem which was a circular reference causing a ... Stackoverflow. The logs didn't help much - I had to read through the code in another editor and search for my bug. 回答1: First, look in the

How does IOS manage memory of backgrounded apps?

a 夏天 提交于 2021-01-29 07:02:38
问题 I have an IOS app that during testing seems to work fine until... The app has been in the background for quite some time, say 24 hours... and meanwhile lots of activity has taken place in other apps (videos, audio, location... battery going low... lots of memory being used). Then when I bring my app back into the foreground, it acts glitchy such as having no audio... and then crashes after a short while. I KNOW this is not the best description, but it has only happened once and I'm not asking

How does IOS manage memory of backgrounded apps?

你离开我真会死。 提交于 2021-01-29 06:55:28
问题 I have an IOS app that during testing seems to work fine until... The app has been in the background for quite some time, say 24 hours... and meanwhile lots of activity has taken place in other apps (videos, audio, location... battery going low... lots of memory being used). Then when I bring my app back into the foreground, it acts glitchy such as having no audio... and then crashes after a short while. I KNOW this is not the best description, but it has only happened once and I'm not asking

Why does my program crash upon writing to a file?

匆匆过客 提交于 2021-01-29 02:48:25
问题 I know I really shouldn't ask for bug solutions here in Stack exchange, but I'm new to C and I made a program that unrolls code and prints the code out in a .c file. The problem is that when I want to print out some lines of code, the fputs function to codeOutput crashes the program(I've debugged it this far). I've tried changing the codeOutput file from .c to .txt, but it hasn't changed anything. I know this code excerpt is not really repeatable, but I'm sure I just made a dumb mistake in