Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions glommio/src/executor/stall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ impl StallDetector {
unsafe impl Send for SendWrapper {}
let tid = SendWrapper(unsafe { nix::libc::pthread_self() });
std::thread::spawn(enclose::enclose! { (terminated, timer) move || {
let tid = tid;
while timer.wait().is_ok() {
if terminated.load(Ordering::Relaxed) {
return
Expand Down
Loading