tracy/zstd/common/threading.c

177 lines
4.6 KiB
C
Raw Normal View History

2020-02-08 13:56:59 +00:00
/**
* Copyright (c) 2016 Tino Reichardt
* All rights reserved.
*
2020-06-04 19:03:27 +00:00
* You can contact the author at:
* - zstdmt source repository: https://github.com/mcmilk/zstdmt
*
2020-02-08 13:56:59 +00:00
* This source code is licensed under both the BSD-style license (found in the
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
* in the COPYING file in the root directory of this source tree).
2020-06-04 19:03:27 +00:00
* You may select, at your option, one of the above-listed licenses.
2020-02-08 13:56:59 +00:00
*/
/**
* This file will hold wrapper for systems, which do not support pthreads
*/
#include "threading.h"
/* create fake symbol to avoid empty translation unit warning */
int g_ZSTD_threading_useless_symbol;
#if defined(ZSTD_MULTITHREAD) && defined(_WIN32)
/**
2023-02-10 19:25:40 +00:00
* Windows minimalist Pthread Wrapper
2020-02-08 13:56:59 +00:00
*/
/* === Dependencies === */
#include <process.h>
#include <errno.h>
/* === Implementation === */
2023-02-10 19:25:40 +00:00
typedef struct {
void* (*start_routine)(void*);
void* arg;
int initialized;
ZSTD_pthread_cond_t initialized_cond;
ZSTD_pthread_mutex_t initialized_mutex;
} ZSTD_thread_params_t;
2020-02-08 13:56:59 +00:00
static unsigned __stdcall worker(void *arg)
{
2023-02-10 19:25:40 +00:00
void* (*start_routine)(void*);
void* thread_arg;
2023-04-05 15:16:24 +00:00
/* Initialized thread_arg and start_routine and signal main thread that we don't need it
2023-02-10 19:25:40 +00:00
* to wait any longer.
*/
{
ZSTD_thread_params_t* thread_param = (ZSTD_thread_params_t*)arg;
thread_arg = thread_param->arg;
start_routine = thread_param->start_routine;
/* Signal main thread that we are running and do not depend on its memory anymore */
ZSTD_pthread_mutex_lock(&thread_param->initialized_mutex);
thread_param->initialized = 1;
ZSTD_pthread_cond_signal(&thread_param->initialized_cond);
ZSTD_pthread_mutex_unlock(&thread_param->initialized_mutex);
}
start_routine(thread_arg);
2020-02-08 13:56:59 +00:00
return 0;
}
int ZSTD_pthread_create(ZSTD_pthread_t* thread, const void* unused,
void* (*start_routine) (void*), void* arg)
{
2023-02-10 19:25:40 +00:00
ZSTD_thread_params_t thread_param;
2020-02-08 13:56:59 +00:00
(void)unused;
2023-02-10 19:25:40 +00:00
thread_param.start_routine = start_routine;
thread_param.arg = arg;
thread_param.initialized = 0;
*thread = NULL;
/* Setup thread initialization synchronization */
if(ZSTD_pthread_cond_init(&thread_param.initialized_cond, NULL)) {
/* Should never happen on Windows */
return -1;
}
if(ZSTD_pthread_mutex_init(&thread_param.initialized_mutex, NULL)) {
/* Should never happen on Windows */
ZSTD_pthread_cond_destroy(&thread_param.initialized_cond);
return -1;
}
/* Spawn thread */
*thread = (HANDLE)_beginthreadex(NULL, 0, worker, &thread_param, 0, NULL);
if (!thread) {
ZSTD_pthread_mutex_destroy(&thread_param.initialized_mutex);
ZSTD_pthread_cond_destroy(&thread_param.initialized_cond);
2020-02-08 13:56:59 +00:00
return errno;
2023-02-10 19:25:40 +00:00
}
/* Wait for thread to be initialized */
ZSTD_pthread_mutex_lock(&thread_param.initialized_mutex);
while(!thread_param.initialized) {
ZSTD_pthread_cond_wait(&thread_param.initialized_cond, &thread_param.initialized_mutex);
}
ZSTD_pthread_mutex_unlock(&thread_param.initialized_mutex);
ZSTD_pthread_mutex_destroy(&thread_param.initialized_mutex);
ZSTD_pthread_cond_destroy(&thread_param.initialized_cond);
return 0;
2020-02-08 13:56:59 +00:00
}
2023-02-10 19:25:40 +00:00
int ZSTD_pthread_join(ZSTD_pthread_t thread)
2020-02-08 13:56:59 +00:00
{
DWORD result;
2023-02-10 19:25:40 +00:00
if (!thread) return 0;
result = WaitForSingleObject(thread, INFINITE);
CloseHandle(thread);
2020-02-08 13:56:59 +00:00
switch (result) {
case WAIT_OBJECT_0:
return 0;
case WAIT_ABANDONED:
return EINVAL;
default:
return GetLastError();
}
}
#endif /* ZSTD_MULTITHREAD */
#if defined(ZSTD_MULTITHREAD) && DEBUGLEVEL >= 1 && !defined(_WIN32)
2020-12-18 14:46:27 +00:00
#define ZSTD_DEPS_NEED_MALLOC
#include "zstd_deps.h"
2020-02-08 13:56:59 +00:00
int ZSTD_pthread_mutex_init(ZSTD_pthread_mutex_t* mutex, pthread_mutexattr_t const* attr)
{
2020-12-18 14:46:27 +00:00
*mutex = (pthread_mutex_t*)ZSTD_malloc(sizeof(pthread_mutex_t));
2020-02-08 13:56:59 +00:00
if (!*mutex)
return 1;
return pthread_mutex_init(*mutex, attr);
}
int ZSTD_pthread_mutex_destroy(ZSTD_pthread_mutex_t* mutex)
{
if (!*mutex)
return 0;
{
int const ret = pthread_mutex_destroy(*mutex);
2020-12-18 14:46:27 +00:00
ZSTD_free(*mutex);
2020-02-08 13:56:59 +00:00
return ret;
}
}
int ZSTD_pthread_cond_init(ZSTD_pthread_cond_t* cond, pthread_condattr_t const* attr)
{
2020-12-18 14:46:27 +00:00
*cond = (pthread_cond_t*)ZSTD_malloc(sizeof(pthread_cond_t));
2020-02-08 13:56:59 +00:00
if (!*cond)
return 1;
return pthread_cond_init(*cond, attr);
}
int ZSTD_pthread_cond_destroy(ZSTD_pthread_cond_t* cond)
{
if (!*cond)
return 0;
{
int const ret = pthread_cond_destroy(*cond);
2020-12-18 14:46:27 +00:00
ZSTD_free(*cond);
2020-02-08 13:56:59 +00:00
return ret;
}
}
#endif