From a0474d34f2d29084d4fcc6a049491ddfa36ad695 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Wed, 23 Mar 2022 17:19:08 -0400 Subject: [PATCH] chore: Remove zombie macros --- runtime/include/wasm_types.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/runtime/include/wasm_types.h b/runtime/include/wasm_types.h index fd7546a..0476419 100644 --- a/runtime/include/wasm_types.h +++ b/runtime/include/wasm_types.h @@ -1,8 +1,4 @@ #pragma once -#include - -#define WASM_PAGE_SIZE (1024 * 64) /* 64KB */ -#define WASM_MEMORY_PAGES_INITIAL (1 << 8) /* 256 Pages ~16MB */ -#define WASM_MEMORY_PAGES_MAX (1 << 16) /* 32,768 Pages ~4GB */ -#define WASM_STACK_SIZE (1 << 19) /* 512KB */ +#define WASM_PAGE_SIZE (1024 * 64) /* 64KB */ +#define WASM_STACK_SIZE (1 << 19) /* 512KB */