Skip to content

x86inc: Add stack probing on Windows

Henrik Gramner requested to merge gramner/x264:x86inc_stack_probe into master

Large stack allocations on Windows need to use stack probing in order to guarantee that all stack memory is committed before accessing it. This is done by ensuring that the guard page(s) at the end of the currently committed pages are touched prior to any pages beyond that.

Merge request reports