Skip to content

Commit

Permalink
Expose catch_unwind
Browse files Browse the repository at this point in the history
  • Loading branch information
vertexclique committed Oct 24, 2019
1 parent 3fb375a commit 3f4fae0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions lightproc/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
mod catch_unwind;
mod layout_helpers;
mod proc_data;
mod proc_ext;
mod proc_layout;
mod proc_vtable;
mod raw_proc;
mod state;

pub mod lightproc;
pub mod catch_unwind;
pub mod proc_handle;
pub mod recoverable_handle;
pub mod proc_ext;
pub mod proc_stack;
pub mod recoverable_handle;

pub mod prelude {
pub use crate::lightproc::*;
pub use crate::catch_unwind::*;
pub use crate::proc_ext::*;
pub use crate::proc_handle::*;
pub use crate::recoverable_handle::*;
pub use crate::proc_stack::*;
pub use crate::recoverable_handle::*;
}

0 comments on commit 3f4fae0

Please sign in to comment.