Merge pull request #322 from gwsystems/268-wasm-page-size

chore: Remove zombie macros
master
Sean McBride 3 years ago committed by GitHub
commit 45fcaa9115
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,8 +1,4 @@
#pragma once
#include <stdint.h>
#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 */

Loading…
Cancel
Save