mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-09 01:01:11 +08:00
15 lines
301 B
C
15 lines
301 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_testcancel()
|
|
|
|
#define pthread_mutex_init(A, B)
|
|
#define pthread_mutex_destroy(A)
|
|
#define pthread_mutex_lock(A)
|
|
#define pthread_mutex_unlock(A)
|
|
|
|
#endif
|