summaryrefslogtreecommitdiff
path: root/androidcompat.h
blob: eec76dadb4ea5a6fee851e73875126a31873e316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Compatibility layer for Android.
 *
 * Stub calls or alternate functions for pthreads.
 */

#ifndef __ANDROID_H__
#define __ANDROID_H__

#ifdef ANDROID

#define pthread_setcanceltype(type, oldtype)	(0)
#define pthread_setcancelstate(state, oldstate)	(0)

#define pthread_cancel(ret)	pthread_kill((ret), SIGUSR1)

typedef struct blkid_struct_probe *blkid_probe;

#include <dirent.h>
#define direct dirent

#else	/* !ANDROID */

#include <sys/dir.h>

#endif	/* !ANDROID */

#endif	/* __ANDROID_H__ */