reorganize signal module and leave stubs in windows (#162)

This commit is contained in:
Mackenzie Clark
2019-02-07 17:08:42 -08:00
committed by GitHub
parent 9719781eee
commit 46ac4e9e1a
7 changed files with 90 additions and 78 deletions

View File

@ -0,0 +1,6 @@
use crate::signal::HandlerData;
use wasmer_runtime_core::error::RuntimeResult;
pub fn call_protected<T>(handler_data: &HandlerData, f: impl FnOnce() -> T) -> RuntimeResult<T> {
unimplemented!("TODO");
}