summaryrefslogtreecommitdiff
path: root/libs/libmosquitto/src/dummypthread.h
blob: 4207f3d68c5941bf3a19fb9625b2e5c751d9ea5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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