compio-rs / compio

A thread-per-core Rust runtime with IOCP/io_uring/polling.
MIT License
420 stars 37 forks source link

Use lockfree map when handling Unix signals #182

Closed Berrysoft closed 9 months ago

Berrysoft commented 9 months ago

The signal handler is executed in the current thread, so we should not use RefCell. Instead, a lockfree map should be used.