//--------------------------------------------------------------------------------------------------
// Constants
//--------------------------------------------------------------------------------------------------
/// Match the common Unix main-thread stack reserve without committing it up front.
const WINDOWS_STACK_RESERVE_BYTES: usize = 8 * 1024 * 1024;
const WINDOWS_STACK_COMMIT_BYTES: usize = 64 * 1024;
//--------------------------------------------------------------------------------------------------
// Functions
//--------------------------------------------------------------------------------------------------