fix: stress testing & stability (v0.6.5)

Improve reliability under high load:
- tests/stress.rs: New comprehensive stress test suite (448 lines)
- Fine-tune I/O & runtime scheduling edge cases
- Pin versions & fix MSRV compatibility
This commit is contained in:
smarm
2026-05-24 07:03:45 +00:00
parent 978678a46e
commit aeacaf6118
4 changed files with 523 additions and 30 deletions
+2 -1
View File
@@ -427,9 +427,10 @@ fn epoll_loop(
continue;
}
let fd = ev.u64 as RawFd;
let evs = ev.events;
q.push_back(Completion::FdReady {
fd,
events: ev.events,
events: evs,
});
pushed_any = true;
}