Uh oh!
There was an error while loading. Please reload this page.
gh-152433: Windows: allow build ceval.c for UWP - #152689
Conversation
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
| GetCurrentThreadStackLimits(&low, &high); | ||
| *top = (uintptr_t)high; | ||
| ULONG guarantee = 0; | ||
| #ifdef MS_WINDOWS_DESKTOP |
There was a problem hiding this comment.
Hm, since SetThreadStackGuarantee isn't available for UWP, we can't use it here, but since
Sets the minimum size of the stack associated with the calling thread or fiber that will be available during any stack overflow exceptions. This is useful for handling stack overflow exceptions; the application can safely use the specified number of bytes during exception handling.
we'd lose that in case of UWP :(
I think this ok, cc @markshannon?
ceval.c allow build in UWPceval.c for UWP
Windows: allow build
ceval.cfor UWP.