-
-
Notifications
You must be signed in to change notification settings - Fork 21.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Signal 11 crash with no debug info in backtrace #93862
Comments
Copied from here:
|
|
Possibly also related to the fact that the editor itself sometimes crashes while using it (~ 1-2 times/day, when not running the game). (currently building Godot debug, will return with results) |
I built Godot as debug with After that, I launched the editor through console with
Here is a full log (godot debug.log) where you can see multiple "simulations" that run and end correctly, until the last one starts before the crash. What can I do to try and narrow down the cause of this crash? |
Try running Godot using the Visual Studio debugger or WinDbg, so that you don't need to rely on Godot's crash handler to see the backtrace. |
Question: after I run the Godot editor from Visual Studio with F5, and after that I run the game with F5 from the Godot editor, do I need to re-attach Visual Studio debugger to game process, or leave it on the editor process? |
After running the Godot editor from Visual Studio and performing the test 70 times (~1 hour of it running constantly), everything worked perfectly and I was unable to reproduce the crash... Tomorrow I will build the editor and Windows templates separately, and run the test outside VS again. |
I don't remember if Visual Studio automatically attaches to the child process. I recommend passing command line arguments to the debugger so that the project runs directly instead. |
Thanks a lot guys for the guidance! I managed to get some error info while testing a custom build with
Here is the full log: godot.log You can see in it that the test ran 33 times before it crashed on attempt 34, but this is completely random, as it sometimes crashes on the first try as well. |
I mentioned in my original post that my test uses only "pure GDScript", but there is one other thing I actually use, and that is Image objects, as my game maps are stored as images so I can apply Image methods to them ( Though I cannot see something related to images in the error info. Regarding the editor crashes: does the Gogot editor itself save a log somewhere? I was unable to find one at the typical location where Godot projects keep their user files: |
It does not (unless you start it with |
My main concern with this rare/random crashing would be not as much the game client itself, but having a server app that needs to run reliably for days/weeks (assuming no errors in my own code). I'm not sure if this is relevant, but I also rarely get some random GDScript errors, like an "invalid access of a variable" that definitely exists, or an "invalid access of an array element" that is definitely there (I got this on an array declared directly in the script file and which is never modified). In the editor, the code would pause at such an error, but if I resume, it continues working fine. To me would appear that GDScript itself sometimes "glitches". I will get exact error messages/screenshots the next time I see one of these. |
|
I noticed that both methods normally work, but I did not know that the braces method is better practice, thank you for this. |
Okay I'll admit I didn't know dictionaries could be accessed by that syntax. Would it be possible to share more of the code related to that dictionary? Rename types and things as needed if you don't want to share project details. |
There is no special "code" about it, it's just a simple dictionary on which I set and read values from. When I started using Godot I was using the brackets syntax to set/get values (as I was used in the old Adobe AIR/Flash), but then I saw I can get/set values directly with dot syntax, which to me looks cleaner. I love the dynamic typing of GDScript because I can focus on building my game instead of static-typing everything, and I'm totally fine with the small performance loss caused by it. |
(oh wow, adobe air that takes me back...) What I meant is, if we can see where this dictionary is created, passed along, etc. that might be a clue to what's causing the bug. |
This particular dictionary is loaded from a If the error would be caused by how I use the dictionary, I would expect it to show up more regularly, but instead it only happens randomly about once every few days (and my game regularly uses hundreds of these objects). |
That's good info, thanks. |
I got the new 4.3 beta 3 and tested again on 3 PCs (for a few hours). To my relief, it seems that only my PC experiences this rare, random, unreproducible crashing (but somehow not when running Godot from source with VS). On one of the crashes I did get a new error I did not see before:
As it would seem this is just an isolated issue, like in my case, it would explain the lack of other reports on this. For now I guess I can have some peace of mind to continue working in Godot knowing that it is indeed reliable :) If you feel this issue is not worth any further investigation, please feel free to close it. |
Due to what CPU it is, i need to know if it's the CPU itself or Godot.
This message makes it more look like this is the CPU and not Godot here. |
Mine is i9-13900K, and the others I tested on and worked without problems are: i7-8700K, i5-9300H, i5-4690T. Worth to note that my PC is pretty stable otherwise. |
Are you underclocking currently? |
I did not make any changes to voltages, but the CPU has always been limited to 175W. |
I think I have the same problem. Is there a solution?
|
I have concluded mostly that my problem is caused by the CPU which may be dying, since it's a 13900K and subject to the degradation issue I just recently found out about. @404ar Do you have a high-power 13th/14th gen Intel CPU? |
I have an old Intel® Celeron® Processor 2957U 2M Cache, 1.40 GHz i think that's the problem thank you @htmiel . |
@htmiel I don't think the problem is with the processor, because I tried it on Linux and it worked without crashing , i think the problem is in the Windows system? |
I tested on a different CPU, and let a Godot Windows app run under high load for 2 days straight, no error. Your error could be either some isolated Windows issue, or something hardware related. But on a "healthy" Windows install and hardware, Godot worked great (at least with the Godot features I used). If you can consistently reproduce the issue, you should try to isolate it as much as possible, to find out where it comes from, and them make a minimal reproduction project (MRP) that the contributors can investigate. |
I replaced my CPU today, and with all the tests I did, I had no more errors. This confirms that the errors I mentioned here were caused by my degraded Intel CPU. |
Thanks for the update! Closing then. |
Tested versions
Reproducible in: v4.3.beta2.official [b75f048], v4.3.beta1.official [a4f2ea9]
System information
Godot v4.3.beta2 - Windows 10.0.19045 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 3060 (NVIDIA; 32.0.15.5585) - 13th Gen Intel(R) Core(TM) i9-13900K (32 Threads)
Issue description
I am working on a game and I want to test overall stability (this is my first Godot project). The task involves running game logic code continuously in a loop for ~10 seconds to see if any issues pop up. The code is "pure GDScript" (as it would run on the server app), meaning only code from custom classes; no nodes, no audio, nothing related to visuals, no physics, etc.
When testing this, the app occasionally freezes and crashes (both when running from editor, as well as exported), with
CrashHandlerException: Program crashed with signal 11
, and the rest of the info does not seem to help in identifying the problem:What can I do to get more info about the source of the crash?
I attached the full log from running with --verbose: godot.log
I found https://github.com/Calinou/godot-debug-builds but it seems the last build is from a while back.
Steps to reproduce
I am not able to pinpoint the source of the crash.
Minimal reproduction project (MRP)
I cannot create an MRP as I do not know the source of the crash.
The text was updated successfully, but these errors were encountered: