Commit 4502dd0c authored by Sergey Lyubka's avatar Sergey Lyubka

s/MONGOOSE_NO_THREADS/MONGOOSE_ENABLE_THREADS

parent 95055f60
...@@ -149,7 +149,7 @@ all Net Skeleton functions will be available too. ...@@ -149,7 +149,7 @@ all Net Skeleton functions will be available too.
-DMONGOOSE_NO_DIRECTORY_LISTING Disable directory listing -DMONGOOSE_NO_DIRECTORY_LISTING Disable directory listing
-DMONGOOSE_NO_FILESYSTEM Disables all file IO, serving from memory only -DMONGOOSE_NO_FILESYSTEM Disables all file IO, serving from memory only
-DMONGOOSE_NO_LOGGING Disable access/error logging -DMONGOOSE_NO_LOGGING Disable access/error logging
-DMONGOOSE_NO_THREADS -DMONGOOSE_ENABLE_THREADS Enable mg_start_thread() function
-DMONGOOSE_NO_WEBSOCKET Disable WebSocket support -DMONGOOSE_NO_WEBSOCKET Disable WebSocket support
-DMONGOOSE_NO_USER No concept of a user on used platform. -DMONGOOSE_NO_USER No concept of a user on used platform.
(Platform does not provide getpwnam, setgid or setuid) (Platform does not provide getpwnam, setgid or setuid)
......
...@@ -1561,11 +1561,11 @@ static const struct { ...@@ -1561,11 +1561,11 @@ static const struct {
{NULL, 0, NULL} {NULL, 0, NULL}
}; };
#ifndef MONGOOSE_NO_THREADS #ifdef MONGOOSE_ENABLE_THREADS
void *mg_start_thread(void *(*f)(void *), void *p) { void *mg_start_thread(void *(*f)(void *), void *p) {
return ns_start_thread(f, p); return ns_start_thread(f, p);
} }
#endif // MONGOOSE_NO_THREADS #endif // MONGOOSE_ENABLE_THREADS
#ifndef MONGOOSE_NO_MMAP #ifndef MONGOOSE_NO_MMAP
#ifdef _WIN32 #ifdef _WIN32
......
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