Sergey Kovalevich
Results
2
issues of
Sergey Kovalevich
Hi! Instead of allocating x2 memory inside [BoundedQueue](https://github.com/odygrd/quill/blob/master/quill/include/quill/detail/spsc_queue/BoundedQueue.h#L37) you could `mmap(...)` the same memory region twice: ```c++ std::size_t const size = ...; int fd = memfd_create(...); ftruncate(fd, size); auto address...
Wanna say thanks for that awesome keyboard project! 