blob: 4e47b6b91bc821c0dfea854de1a1e6ed6b4e2c29 [file] [log] [blame]
Yann Collet3b9d4342016-12-31 16:32:19 +01001/**
2 * Copyright (c) 2016 Tino Reichardt
3 * All rights reserved.
4 *
Yann Collete9dc2042017-08-31 11:24:54 -07005 * This source code is licensed under both the BSD-style license (found in the
6 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
7 * in the COPYING file in the root directory of this source tree).
Yann Collet3b9d4342016-12-31 16:32:19 +01008 *
9 * You can contact the author at:
10 * - zstdmt source repository: https://github.com/mcmilk/zstdmt
11 */
12
13/**
Yann Collet0f984d92017-01-19 14:05:07 -080014 * This file will hold wrapper for systems, which do not support pthreads
Yann Collet3b9d4342016-12-31 16:32:19 +010015 */
16
ds7708e6a882017-02-14 00:14:24 +010017/* When ZSTD_MULTITHREAD is not defined, this file would become an empty translation unit.
Yann Collete9dc2042017-08-31 11:24:54 -070018 * Include some ISO C header code to prevent this and portably avoid related warnings.
19 * (Visual C++: C4206 / GCC: -Wpedantic / Clang: -Wempty-translation-unit)
20 */
ds7708e6a882017-02-14 00:14:24 +010021#include <stddef.h>
cyan49735fba09f2017-01-20 12:23:30 -080022
23
Yann Collet0f984d92017-01-19 14:05:07 -080024#if defined(ZSTD_MULTITHREAD) && defined(_WIN32)
Yann Collet3b9d4342016-12-31 16:32:19 +010025
26/**
27 * Windows minimalist Pthread Wrapper, based on :
28 * http://www.cse.wustl.edu/~schmidt/win32-cv-1.html
29 */
30
31
32/* === Dependencies === */
33#include <process.h>
34#include <errno.h>
35#include "threading.h"
36
37
38/* === Implementation === */
39
40static unsigned __stdcall worker(void *arg)
41{
42 pthread_t* const thread = (pthread_t*) arg;
43 thread->arg = thread->start_routine(thread->arg);
44 return 0;
45}
46
47int pthread_create(pthread_t* thread, const void* unused,
48 void* (*start_routine) (void*), void* arg)
49{
50 (void)unused;
51 thread->arg = arg;
52 thread->start_routine = start_routine;
53 thread->handle = (HANDLE) _beginthreadex(NULL, 0, worker, thread, 0, NULL);
54
55 if (!thread->handle)
56 return errno;
57 else
58 return 0;
59}
60
61int _pthread_join(pthread_t * thread, void **value_ptr)
62{
63 DWORD result;
64
65 if (!thread->handle) return 0;
66
67 result = WaitForSingleObject(thread->handle, INFINITE);
68 switch (result) {
69 case WAIT_OBJECT_0:
70 if (value_ptr) *value_ptr = thread->arg;
71 return 0;
72 case WAIT_ABANDONED:
73 return EINVAL;
74 default:
75 return GetLastError();
76 }
77}
78
Yann Collet0f984d92017-01-19 14:05:07 -080079#endif /* ZSTD_MULTITHREAD */