mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-05-11 10:44:15 +02:00
14 lines
278 B
C
14 lines
278 B
C
#ifndef _DUMMYPTHREAD_H_
|
|
#define _DUMMYPTHREAD_H_
|
|
|
|
#define pthread_create(A, B, C, D)
|
|
#define pthread_join(A, B)
|
|
#define pthread_cancel(A)
|
|
|
|
#define pthread_mutex_init(A, B)
|
|
#define pthread_mutex_destroy(A)
|
|
#define pthread_mutex_lock(A)
|
|
#define pthread_mutex_unlock(A)
|
|
|
|
#endif
|