diff options
| author | Marat Dukhan <maratek@gmail.com> | 2020-04-07 19:14:45 -0700 |
|---|---|---|
| committer | Marat Dukhan <maratek@gmail.com> | 2020-04-07 19:15:27 -0700 |
| commit | be1bd8ed45f30ccdc23e5dcbf3896c1ae85f1ef3 (patch) | |
| tree | 8ac2f511c4d3cc540cab4a0a0b716b7595f50ea1 /src/portable-api.c | |
| parent | fa67ff531c0f9999c742d500a4fa061b96937297 (diff) | |
| download | platform_external_pthreadpool-be1bd8ed45f30ccdc23e5dcbf3896c1ae85f1ef3.tar.gz platform_external_pthreadpool-be1bd8ed45f30ccdc23e5dcbf3896c1ae85f1ef3.tar.bz2 platform_external_pthreadpool-be1bd8ed45f30ccdc23e5dcbf3896c1ae85f1ef3.zip | |
Windows implementation using Events
Diffstat (limited to 'src/portable-api.c')
| -rw-r--r-- | src/portable-api.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/portable-api.c b/src/portable-api.c index c2c33a8..32df0d6 100644 --- a/src/portable-api.c +++ b/src/portable-api.c @@ -12,13 +12,13 @@ /* Dependencies */ #include <fxdiv.h> -/* Library header */ +/* Public library header */ #include <pthreadpool.h> -/* Internal headers */ -#include "threadpool-utils.h" +/* Internal library headers */ #include "threadpool-atomics.h" #include "threadpool-object.h" +#include "threadpool-utils.h" size_t pthreadpool_get_threads_count(struct pthreadpool* threadpool) { |
