Tor
0.4.7.0-alpha-dev
|
Header for threads.c. More...
#include "orconfig.h"
#include "lib/cc/torint.h"
#include "lib/testsupport/testsupport.h"
#include "lib/lock/compat_mutex.h"
Go to the source code of this file.
Data Structures | |
struct | tor_cond_t |
struct | tor_threadlocal_t |
struct | atomic_counter_t |
Macros | |
#define | tor_mutex_init_for_cond(m) tor_mutex_init_nonrecursive(m) |
#define | tor_cond_free(c) FREE_AND_NULL(tor_cond_t, tor_cond_free_, (c)) |
#define | ATOMIC_LINKAGE |
Header for threads.c.
Definition in file threads.h.
#define tor_mutex_init_for_cond | ( | m | ) | tor_mutex_init_nonrecursive(m) |
ATOMIC_LINKAGE void atomic_counter_add | ( | atomic_counter_t * | counter, |
size_t | add | ||
) |
Add a value to an atomic counter.
Definition at line 87 of file compat_threads.c.
Referenced by atomic_counter_sub().
ATOMIC_LINKAGE void atomic_counter_destroy | ( | atomic_counter_t * | counter | ) |
Clean up all resources held by an atomic counter.
Destroying a locked mutex is undefined behaviour. Global mutexes may be locked when they are passed to this function, because multiple threads can still access them. So we can either:
Definition at line 80 of file compat_threads.c.
Referenced by cleanup_protocol_warning_severity_level().
ATOMIC_LINKAGE size_t atomic_counter_exchange | ( | atomic_counter_t * | counter, |
size_t | newval | ||
) |
Replace the value of an atomic counter; return the old one.
Definition at line 112 of file compat_threads.c.
Referenced by set_protocol_warning_severity_level().
ATOMIC_LINKAGE size_t atomic_counter_get | ( | atomic_counter_t * | counter | ) |
Return the current value of an atomic counter
Definition at line 102 of file compat_threads.c.
Referenced by get_protocol_warning_severity_level(), tor_compress_get_total_allocation(), tor_lzma_get_total_allocation(), tor_zlib_get_total_allocation(), and tor_zstd_get_total_allocation().
ATOMIC_LINKAGE void atomic_counter_init | ( | atomic_counter_t * | counter | ) |
Initialize a new atomic counter with the value 0
Definition at line 65 of file compat_threads.c.
Referenced by init_protocol_warning_severity_level(), tor_compress_init(), tor_lzma_init(), and tor_zstd_init().
ATOMIC_LINKAGE void atomic_counter_sub | ( | atomic_counter_t * | counter, |
size_t | sub | ||
) |
Subtract a value from an atomic counter.
Definition at line 95 of file compat_threads.c.
Referenced by tor_lzma_compress_free_(), tor_zlib_compress_free_(), and tor_zstd_compress_free_().
int in_main_thread | ( | void | ) |
Return true iff called from the main thread.
Definition at line 57 of file compat_threads.c.
Referenced by consensus_diff_queue_diff_work(), consensus_diff_worker_replyfn(), control_event_logmsg(), and control_event_logmsg_pending().
void set_main_thread | ( | void | ) |
Start considering the current thread to be the 'main thread'. This has no effect on anything besides in_main_thread().
Definition at line 51 of file compat_threads.c.
void spawn_exit | ( | void | ) |
End the current thread/process.
Definition at line 93 of file compat_pthreads.c.
int spawn_func | ( | void(*)(void *) | func, |
void * | data | ||
) |
Minimalist interface to run a void function in the background. On Unix calls pthread_create, on win32 calls beginthread. Returns -1 on failure. func should not return, but rather should call spawn_exit.
NOTE: if data is used, it should not be allocated on the stack, since in a multithreaded environment, there is no way to be sure that the caller's stack will still be around when the called function is running.
Definition at line 72 of file compat_pthreads.c.
void tor_cond_free_ | ( | tor_cond_t * | c | ) |
Free all storage held in c.
Definition at line 37 of file compat_threads.c.
int tor_cond_init | ( | tor_cond_t * | cond | ) |
Initialize an already-allocated condition variable.
Definition at line 114 of file compat_pthreads.c.
tor_cond_t* tor_cond_new | ( | void | ) |
Allocate and return a new condition variable.
Definition at line 27 of file compat_threads.c.
void tor_cond_signal_all | ( | tor_cond_t * | cond | ) |
Wake up all of the waiters on cond.
Definition at line 221 of file compat_pthreads.c.
void tor_cond_signal_one | ( | tor_cond_t * | cond | ) |
Wake up one of the waiters on cond.
Definition at line 215 of file compat_pthreads.c.
void tor_cond_uninit | ( | tor_cond_t * | cond | ) |
Release all resources held by cond, but do not free cond itself.
Definition at line 150 of file compat_pthreads.c.
Referenced by tor_cond_free_().
int tor_cond_wait | ( | tor_cond_t * | cond, |
tor_mutex_t * | mutex, | ||
const struct timeval * | tv | ||
) |
Wait until one of the tor_cond_signal functions is called on cond. (If tv is set, and that amount of time passes with no signal to cond, return anyway. All waiters on the condition must wait holding the same mutex. All signallers should hold that mutex. The mutex needs to have been allocated with tor_mutex_init_for_cond().
Returns 0 on success, -1 on failure, 1 on timeout.
Definition at line 167 of file compat_pthreads.c.
unsigned long tor_get_thread_id | ( | void | ) |
Return an integer representing this thread.
Definition at line 100 of file compat_pthreads.c.
Referenced by in_main_thread(), and set_main_thread().
void tor_threadlocal_destroy | ( | tor_threadlocal_t * | threadlocal | ) |
Release all resource associated with a thread-local variable.
Definition at line 234 of file compat_pthreads.c.
Referenced by crypto_rand_fast_shutdown().
void* tor_threadlocal_get | ( | tor_threadlocal_t * | threadlocal | ) |
Return the current value of a thread-local variable for this thread.
It's undefined behavior to use this function if the threadlocal hasn't been initialized, or has been destroyed.
Definition at line 241 of file compat_pthreads.c.
Referenced by destroy_thread_fast_rng(), and get_thread_fast_rng().
int tor_threadlocal_init | ( | tor_threadlocal_t * | threadlocal | ) |
Initialize a thread-local variable.
After you call this function on a tor_threadlocal_t, you can call tor_threadlocal_set to change the current value of this variable for the current thread, and tor_threadlocal_get to retrieve the current value for the current thread. Each thread has its own value.
Definition at line 227 of file compat_pthreads.c.
Referenced by crypto_rand_fast_init().
void tor_threadlocal_set | ( | tor_threadlocal_t * | threadlocal, |
void * | value | ||
) |
Change the current value of a thread-local variable for this thread to value.
It's undefined behavior to use this function if the threadlocal hasn't been initialized, or has been destroyed.
Definition at line 247 of file compat_pthreads.c.
void tor_threads_init | ( | void | ) |
Set up common structures for use by threading.
Definition at line 255 of file compat_pthreads.c.