mosquitto/lib/dummypthread.h

15 lines
301 B
C
Raw Permalink Normal View History

#ifndef DUMMYPTHREAD_H
#define DUMMYPTHREAD_H
2014-05-07 22:27:00 +00:00
#define pthread_create(A, B, C, D)
#define pthread_join(A, B)
#define pthread_cancel(A)
#define pthread_testcancel()
2014-05-07 22:27:00 +00:00
#define pthread_mutex_init(A, B)
#define pthread_mutex_destroy(A)
2021-10-05 14:20:37 +00:00
#define pthread_mutex_lock(A)
#define pthread_mutex_unlock(A)
2014-05-07 22:27:00 +00:00
#endif