From 652dbac0f9c0d113a64cb9d2186ea89849bd1b7b Mon Sep 17 00:00:00 2001 From: Kyle Marshall <43699859+kylecmarshall@users.noreply.github.com> Date: Tue, 29 Aug 2023 12:00:23 -0500 Subject: [PATCH] Updated outdated url in lj_jit.h Updated url to Raymond Chen's "Why is address space allocation granularity 64KB?" post on The Old New Thing. --- src/lj_jit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lj_jit.h b/src/lj_jit.h index 19810639..6902fba3 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h @@ -105,7 +105,7 @@ /* -- JIT engine parameters ----------------------------------------------- */ #if LJ_TARGET_WINDOWS || LJ_64 -/* See: http://blogs.msdn.com/oldnewthing/archive/2003/10/08/55239.aspx */ +/* See: https://devblogs.microsoft.com/oldnewthing/20031008-00/?p=42223 */ #define JIT_P_sizemcode_DEFAULT 64 #else /* Could go as low as 4K, but the mmap() overhead would be rather high. */