MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / create_linker

Function create_linker

examples/async.cc:82–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82handle<wasmtime_linker_t, wasmtime_linker_delete>
83create_linker(wasm_engine_t *engine) {
84 handle<wasmtime_linker_t, wasmtime_linker_delete> linker;
85 linker.reset(wasmtime_linker_new(engine));
86 assert(linker);
87 return linker;
88}
89
90handle<wasmtime_module_t, wasmtime_module_delete>
91compile_wat_module_from_file(wasm_engine_t *engine,

Callers 1

mainFunction · 0.85

Calls 3

wasmtime_linker_newFunction · 0.85
assertFunction · 0.85
resetMethod · 0.45

Tested by

no test coverage detected