mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2026-04-18 18:18:44 +00:00
Add public API for aligned memory allocation, exposing the existing mem_allocator_malloc_aligned infrastructure through wasm_export.h. - Add wasm_runtime_aligned_alloc() API declaration with documentation - Implement internal helper wasm_runtime_aligned_alloc_internal() - Add public function with size/alignment validation - POOL mode only, returns NULL for other memory modes - Follows wasm_runtime_malloc() patterns for consistency Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
49 lines
888 B
Plaintext
49 lines
888 B
Plaintext
.*
|
|
!.gitignore
|
|
|
|
.cache
|
|
.clangd
|
|
.vs
|
|
.vscode
|
|
.venv
|
|
/.idea
|
|
**/cmake-build-*/
|
|
**/*build*/
|
|
!/build-scripts
|
|
*.obj
|
|
*.a
|
|
*.so
|
|
.clangd
|
|
.DS_Store
|
|
*.o
|
|
.aider*
|
|
|
|
core/deps/**
|
|
core/shared/mem-alloc/tlsf
|
|
core/iwasm/libraries/lib-wasi-threads/test/*.wasm
|
|
core/iwasm/libraries/lib-socket/test/*.wasm
|
|
|
|
product-mini/app-samples/hello-world/test.wasm
|
|
product-mini/platforms/linux-sgx/enclave-sample/
|
|
!product-mini/platforms/linux-sgx/enclave-sample/App/App.*
|
|
!product-mini/platforms/linux-sgx/enclave-sample/Enclave/Enclave.*
|
|
|
|
build_out
|
|
tests/wamr-test-suites/workspace
|
|
|
|
!/test-tools/wamr-ide/VSCode-Extension/.vscode
|
|
|
|
samples/socket-api/wasm-src/inc/pthread.h
|
|
|
|
**/__pycache__
|
|
|
|
tests/benchmarks/coremark/coremark*
|
|
|
|
samples/workload/include/**
|
|
!samples/workload/include/.gitkeep
|
|
|
|
# core/iwasm/libraries/wasi-threads
|
|
|
|
tests/unit/runtime-common/wasm-apps/main.aot
|
|
tests/unit/aot-stack-frame/wasm-apps/test_aot.h
|