Commit 5dd9d37e authored by Evelyn's avatar Evelyn Committed by GitHub

Update mg_enable_multithreading.md

parent f900854e
...@@ -6,9 +6,9 @@ signature: | ...@@ -6,9 +6,9 @@ signature: |
void mg_enable_multithreading(struct mg_connection *nc); void mg_enable_multithreading(struct mg_connection *nc);
--- ---
Enable multi-threaded handling for the given listening connection `nc`. Enables multi-threaded handling for the given listening connection `nc`.
For each accepted connection, Mongoose will create a separate thread For each accepted connection, Mongoose will create a separate thread
and run event handler in that thread. Thus, if an event hanler is doing and run an event handler in that thread. Thus, if an event handler is doing
a blocking call or some long computation, that will not slow down a blocking call or some long computation, it will not slow down
other connections. other connections.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment