Project Alice
Loading...
Searching...
No Matches
threading.h File Reference
#include "debug.h"
Include dependency graph for threading.h:
This graph shows which files directly or indirectly include this file:

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
 

Macro Definition Documentation

◆ ZSTD_pthread_cond_broadcast

#define ZSTD_pthread_cond_broadcast (   a)    ((void)(a))

Definition at line 140 of file threading.h.

◆ ZSTD_pthread_cond_destroy

#define ZSTD_pthread_cond_destroy (   a)    ((void)(a))

Definition at line 137 of file threading.h.

◆ ZSTD_pthread_cond_init

#define ZSTD_pthread_cond_init (   a,
 
)    ((void)(a), (void)(b), 0)

Definition at line 136 of file threading.h.

◆ ZSTD_pthread_cond_signal

#define ZSTD_pthread_cond_signal (   a)    ((void)(a))

Definition at line 139 of file threading.h.

◆ ZSTD_pthread_cond_wait

#define ZSTD_pthread_cond_wait (   a,
 
)    ((void)(a), (void)(b))

Definition at line 138 of file threading.h.

◆ ZSTD_pthread_mutex_destroy

#define ZSTD_pthread_mutex_destroy (   a)    ((void)(a))

Definition at line 131 of file threading.h.

◆ ZSTD_pthread_mutex_init

#define ZSTD_pthread_mutex_init (   a,
 
)    ((void)(a), (void)(b), 0)

Definition at line 130 of file threading.h.

◆ ZSTD_pthread_mutex_lock

#define ZSTD_pthread_mutex_lock (   a)    ((void)(a))

Definition at line 132 of file threading.h.

◆ ZSTD_pthread_mutex_unlock

#define ZSTD_pthread_mutex_unlock (   a)    ((void)(a))

Definition at line 133 of file threading.h.

Typedef Documentation

◆ ZSTD_pthread_cond_t

typedef int ZSTD_pthread_cond_t

Definition at line 135 of file threading.h.

◆ ZSTD_pthread_mutex_t

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.