minor: Fix MSVC build (#2310)
pthread was included on Windows platform even if it is not supported
This commit is contained in:
parent
2cd5623c9a
commit
2070798d5e
1 changed files with 2 additions and 0 deletions
|
@ -4657,7 +4657,9 @@ size_t mg_fwrite(const void *ptr, size_t size, size_t count, FILE *f);
|
|||
#endif /* MG_ENABLE_FILESYSTEM */
|
||||
|
||||
#if MG_ENABLE_THREADS
|
||||
#if CS_PLATFORM == CS_P_UNIX
|
||||
#include <pthread.h>
|
||||
#endif
|
||||
/*
|
||||
* Starts a new detached thread.
|
||||
* Arguments and semantics are the same as pthead's `pthread_create()`.
|
||||
|
|
Loading…
Add table
Reference in a new issue