mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git
synced 2024-11-15 00:04:23 +08:00
btrfs-progs: add compat header for android
Provide stubs and compat macros for android build. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
455ab41f91
commit
8653831b9f
28
androidcompat.h
Normal file
28
androidcompat.h
Normal file
@ -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 <dirent.h>
|
||||
#define direct dirent
|
||||
|
||||
#else /* !ANDROID */
|
||||
|
||||
#include <sys/dir.h>
|
||||
|
||||
#endif /* !ANDROID */
|
||||
|
||||
#endif /* __ANDROID_H__ */
|
Loading…
Reference in New Issue
Block a user