This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Paul Murphy
Recipients Paul Murphy, pitrou, vstinner
Date 2015-08-13.16:14:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1439482470.39.0.153413208225.issue24851@psf.upfronthosting.co.za>
In-reply-to
Content
Somehow, you need to preserve access to the stack memory. The generated code is still growing the stack, it just fails to touch any of it.

I'm guessing a volatile access would just add an extra non-stack access to the infinite loop.

Initially, I had tried creating a non-inlined function to touch the stack memory. It worked in this case, but still required some undesirable compiler specific assistance.
History
Date User Action Args
2015-08-13 16:14:30Paul Murphysetrecipients: + Paul Murphy, pitrou, vstinner
2015-08-13 16:14:30Paul Murphysetmessageid: <1439482470.39.0.153413208225.issue24851@psf.upfronthosting.co.za>
2015-08-13 16:14:30Paul Murphylinkissue24851 messages
2015-08-13 16:14:29Paul Murphycreate