mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2024-11-01 01:28:55 +00:00
11 lines
258 B
C
11 lines
258 B
C
|
#ifndef MUTEX_H
|
||
|
#define MUTEX_H
|
||
|
|
||
|
#include <pthread.h>
|
||
|
# define MUTEX_LOCK(x) pthread_mutex_lock(x)
|
||
|
# define MUTEX_UNLOCK(x) pthread_mutex_unlock(x)
|
||
|
# define MUTEX_INIT(x) pthread_mutex_init(x, NULL)
|
||
|
# define MUTEX_DESTROY(x) pthread_mutex_destroy(x)
|
||
|
|
||
|
#endif
|