blob: 92cf57c195a5fb6263e8674a0b038bdbde59084c [file] [log] [blame]
Yann Collet3b9d4342016-12-31 16:32:19 +01001/**
2 * Copyright (c) 2016 Tino Reichardt
3 * All rights reserved.
4 *
Nick Terrellac58c8d2020-03-26 15:19:05 -07005 * You can contact the author at:
6 * - zstdmt source repository: https://github.com/mcmilk/zstdmt
7 *
Yann Collete9dc2042017-08-31 11:24:54 -07008 * This source code is licensed under both the BSD-style license (found in the
9 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
10 * in the COPYING file in the root directory of this source tree).
Nick Terrellac58c8d2020-03-26 15:19:05 -070011 * You may select, at your option, one of the above-listed licenses.
Yann Collet3b9d4342016-12-31 16:32:19 +010012 */
13
14/**
Yann Collet0f984d92017-01-19 14:05:07 -080015 * This file will hold wrapper for systems, which do not support pthreads
Yann Collet3b9d4342016-12-31 16:32:19 +010016 */
17
Nick Terrell24382452019-10-18 12:33:45 -070018#include "threading.h"
19
Josh Sorefa880ca22019-04-12 14:18:11 -040020/* create fake symbol to avoid empty translation unit warning */
21int g_ZSTD_threading_useless_symbol;
cyan49735fba09f2017-01-20 12:23:30 -080022
Yann Collet0f984d92017-01-19 14:05:07 -080023#if defined(ZSTD_MULTITHREAD) && defined(_WIN32)
Yann Collet3b9d4342016-12-31 16:32:19 +010024
25/**
26 * Windows minimalist Pthread Wrapper, based on :
27 * http://www.cse.wustl.edu/~schmidt/win32-cv-1.html
28 */
29
30
31/* === Dependencies === */
32#include <process.h>
33#include <errno.h>
Yann Collet3b9d4342016-12-31 16:32:19 +010034
35
36/* === Implementation === */
37
38static unsigned __stdcall worker(void *arg)
39{
Nick Terrell6c41adf2017-09-27 11:16:24 -070040 ZSTD_pthread_t* const thread = (ZSTD_pthread_t*) arg;
Yann Collet3b9d4342016-12-31 16:32:19 +010041 thread->arg = thread->start_routine(thread->arg);
42 return 0;
43}
44
Nick Terrell6c41adf2017-09-27 11:16:24 -070045int ZSTD_pthread_create(ZSTD_pthread_t* thread, const void* unused,
Yann Collet3b9d4342016-12-31 16:32:19 +010046 void* (*start_routine) (void*), void* arg)
47{
48 (void)unused;
49 thread->arg = arg;
50 thread->start_routine = start_routine;
51 thread->handle = (HANDLE) _beginthreadex(NULL, 0, worker, thread, 0, NULL);
52
53 if (!thread->handle)
54 return errno;
55 else
56 return 0;
57}
58
Nick Terrell6c41adf2017-09-27 11:16:24 -070059int ZSTD_pthread_join(ZSTD_pthread_t thread, void **value_ptr)
Yann Collet3b9d4342016-12-31 16:32:19 +010060{
61 DWORD result;
62
Nick Terrell6c41adf2017-09-27 11:16:24 -070063 if (!thread.handle) return 0;
Yann Collet3b9d4342016-12-31 16:32:19 +010064
Nick Terrell6c41adf2017-09-27 11:16:24 -070065 result = WaitForSingleObject(thread.handle, INFINITE);
Yann Collet3b9d4342016-12-31 16:32:19 +010066 switch (result) {
67 case WAIT_OBJECT_0:
Nick Terrell6c41adf2017-09-27 11:16:24 -070068 if (value_ptr) *value_ptr = thread.arg;
Yann Collet3b9d4342016-12-31 16:32:19 +010069 return 0;
70 case WAIT_ABANDONED:
71 return EINVAL;
72 default:
73 return GetLastError();
74 }
75}
76
Yann Collet0f984d92017-01-19 14:05:07 -080077#endif /* ZSTD_MULTITHREAD */
Nick Terrell24382452019-10-18 12:33:45 -070078
79#if defined(ZSTD_MULTITHREAD) && DEBUGLEVEL >= 1 && !defined(_WIN32)
80
Nick Terrell80f577b2020-08-06 20:18:05 -070081#define ZSTD_DEPS_NEED_MALLOC
82#include "zstd_deps.h"
Nick Terrell24382452019-10-18 12:33:45 -070083
84int ZSTD_pthread_mutex_init(ZSTD_pthread_mutex_t* mutex, pthread_mutexattr_t const* attr)
85{
Nick Terrellc465f242020-08-10 12:46:38 -070086 *mutex = (pthread_mutex_t*)ZSTD_malloc(sizeof(pthread_mutex_t));
Nick Terrell24382452019-10-18 12:33:45 -070087 if (!*mutex)
88 return 1;
89 return pthread_mutex_init(*mutex, attr);
90}
91
92int ZSTD_pthread_mutex_destroy(ZSTD_pthread_mutex_t* mutex)
93{
94 if (!*mutex)
95 return 0;
96 {
97 int const ret = pthread_mutex_destroy(*mutex);
Nick Terrellc465f242020-08-10 12:46:38 -070098 ZSTD_free(*mutex);
Nick Terrell24382452019-10-18 12:33:45 -070099 return ret;
100 }
101}
102
103int ZSTD_pthread_cond_init(ZSTD_pthread_cond_t* cond, pthread_condattr_t const* attr)
104{
Nick Terrellc465f242020-08-10 12:46:38 -0700105 *cond = (pthread_cond_t*)ZSTD_malloc(sizeof(pthread_cond_t));
Nick Terrell24382452019-10-18 12:33:45 -0700106 if (!*cond)
107 return 1;
108 return pthread_cond_init(*cond, attr);
109}
110
111int ZSTD_pthread_cond_destroy(ZSTD_pthread_cond_t* cond)
112{
113 if (!*cond)
114 return 0;
115 {
116 int const ret = pthread_cond_destroy(*cond);
Nick Terrellc465f242020-08-10 12:46:38 -0700117 ZSTD_free(*cond);
Nick Terrell24382452019-10-18 12:33:45 -0700118 return ret;
119 }
120}
121
122#endif