-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
runtime: panic leaves memory in unpredictable state #1304
Labels
Milestone
Comments
What does "happen before" exactly mean? http://groups.google.com/group/golang-nuts/browse_thread/thread/1e63592fe6eef803 |
This is an implementation error. The language spec clearly says that a division by zero acts the same as a direct call to panic ( http://golang.org/doc/go_spec.html#Run_time_panics ). This is a single-threaded program; the main function does start only after any initialization thread has terminated. The results should be 2. Labels changed: added priority-low, removed priority-medium. Status changed to Accepted. |
There are two possible fixes. One is to flush global writes before doing anything that might panic, such as dereferencing a pointer or dividing. The other is to record enough information that the trap handler can flush the registers back to their global variable destinations. We plan to do one of them eventually. Owner changed to r...@golang.org. Status changed to LongTerm. |
Owner changed to builder@golang.org. |
This issue was closed by revision 8998835. Status changed to Fixed. |
CL https://golang.org/cl/97500044 mentions this issue. |
This issue was closed.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The text was updated successfully, but these errors were encountered: