about summary refs log tree commit diff
path: root/src/libpanic_unwind/hermit.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-20/+0
2020-03-19remove unused importsStefan Lankes-1/+0
patch is required to avoid compiler errors by building src/libpanic_unwind/hermit.rs
2020-03-02Apply review feedbackAmanieu d'Antras-2/+0
2020-03-02Inline catching panics into std::catch_unwindMark Rousskov-3/+1
This allows LLVM to inline the happy path, such that catching unwinding is zero-cost when no panic occurs. This also allows us to match the code generated by C++ try/catch.
2019-12-22Format the worldMark Rousskov-3/+7
2019-10-06redesign of the interface to the unikernel HermitCoreStefan Lankes-0/+21
- the old interface between HermitCore and the Rust Standard Library based on a small C library (newlib) - remove this interface and call directly the unikernel - remove the dependency to the HermitCore linker - use rust-lld as linker