From: David Sterba Date: Wed, 26 Aug 2015 14:32:18 +0000 (+0200) Subject: btrfs-progs: add compat header for android X-Git-Tag: upstream/4.16.1~2042 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=8653831b9fbdfa2746e66bb0ba839f3f461fddfc;p=platform%2Fupstream%2Fbtrfs-progs.git btrfs-progs: add compat header for android Provide stubs and compat macros for android build. Signed-off-by: David Sterba --- diff --git a/androidcompat.h b/androidcompat.h new file mode 100644 index 0000000..eec76da --- /dev/null +++ b/androidcompat.h @@ -0,0 +1,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 +#define direct dirent + +#else /* !ANDROID */ + +#include + +#endif /* !ANDROID */ + +#endif /* __ANDROID_H__ */