Skip to content

Commit cdab7f0

Browse files
When compiled with libunwind support, make this part of the public library interface (#828)
1 parent 5e14e32 commit cdab7f0

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub mod coredump;
3737
mod cython;
3838
pub mod dump;
3939
#[cfg(feature = "unwind")]
40-
mod native_stack_trace;
40+
pub mod native_stack_trace;
4141
mod python_bindings;
4242
mod python_data_access;
4343
mod python_interpreters;
@@ -53,5 +53,7 @@ mod version;
5353
pub use config::Config;
5454
pub use python_spy::PythonSpy;
5555
pub use remoteprocess::Pid;
56+
#[cfg(feature = "unwind")]
57+
pub use remoteprocess::{Thread, Tid};
5658
pub use stack_trace::Frame;
5759
pub use stack_trace::StackTrace;

0 commit comments

Comments
 (0)