Simple_httpd.MutexSourceModule providing Mutex thats works with our Async module above
Simple_httpd notion of mutex. You must be careful with server wide mutex: a DoS attack could try to hold such a mutex. A mutex per session may be a good idea. A mutex per client is useless (client are treated sequentially, unless you use spanw or websocket (that uses spawn)).
Note: they are implemented using Linux eventfd