Project Alice
|
#include "debug.h"
Go to the source code of this file.
Macros | |
#define | ZSTD_pthread_mutex_init(a, b) ((void)(a), (void)(b), 0) |
#define | ZSTD_pthread_mutex_destroy(a) ((void)(a)) |
#define | ZSTD_pthread_mutex_lock(a) ((void)(a)) |
#define | ZSTD_pthread_mutex_unlock(a) ((void)(a)) |
#define | ZSTD_pthread_cond_init(a, b) ((void)(a), (void)(b), 0) |
#define | ZSTD_pthread_cond_destroy(a) ((void)(a)) |
#define | ZSTD_pthread_cond_wait(a, b) ((void)(a), (void)(b)) |
#define | ZSTD_pthread_cond_signal(a) ((void)(a)) |
#define | ZSTD_pthread_cond_broadcast(a) ((void)(a)) |
Typedefs | |
typedef int | ZSTD_pthread_mutex_t |
typedef int | ZSTD_pthread_cond_t |
#define ZSTD_pthread_cond_broadcast | ( | a | ) | ((void)(a)) |
Definition at line 140 of file threading.h.
#define ZSTD_pthread_cond_destroy | ( | a | ) | ((void)(a)) |
Definition at line 137 of file threading.h.
#define ZSTD_pthread_cond_init | ( | a, | |
b | |||
) | ((void)(a), (void)(b), 0) |
Definition at line 136 of file threading.h.
#define ZSTD_pthread_cond_signal | ( | a | ) | ((void)(a)) |
Definition at line 139 of file threading.h.
#define ZSTD_pthread_cond_wait | ( | a, | |
b | |||
) | ((void)(a), (void)(b)) |
Definition at line 138 of file threading.h.
#define ZSTD_pthread_mutex_destroy | ( | a | ) | ((void)(a)) |
Definition at line 131 of file threading.h.
#define ZSTD_pthread_mutex_init | ( | a, | |
b | |||
) | ((void)(a), (void)(b), 0) |
Definition at line 130 of file threading.h.
#define ZSTD_pthread_mutex_lock | ( | a | ) | ((void)(a)) |
Definition at line 132 of file threading.h.
#define ZSTD_pthread_mutex_unlock | ( | a | ) | ((void)(a)) |
Definition at line 133 of file threading.h.
typedef int ZSTD_pthread_cond_t |
Definition at line 135 of file threading.h.
typedef int ZSTD_pthread_mutex_t |
Copyright (c) 2016 Tino Reichardt All rights reserved.
You can contact the author at:
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). You may select, at your option, one of the above-listed licenses.
Definition at line 129 of file threading.h.