This commit removes duplication of system headers per platform, i.e. remove
copies of common headers like <stdlib.h> from arch-arm/usr/include and arch-x86/usr/include
and move them to a common include directory. More specifically:
- common headers: android-N/arch-A/usr/include --> android-N/include
- arch-specific headers: android-N/arch-A/usr-include --> android-N/arch-A/include
- arch-specific libs: android-N/arch-A/usr/lib --> android-N/arch-A/lib
Change-Id: Ifdba5038d108901931f3e3a7c14ebe6270d2d276
NOTE: This also contains careful separation of API-level-specific headers.
For example, platforms/android-5/include/pthread.h contains new function
declarations that are not available when using platforms/android-3/include/pthread.h
NOTE: The NDK's build-platforms.sh script has been updated to understand the new
layout. This change in develeopment/ndk does not change the layout of
platform files under $NDK/platforms after build-platforms.sh is called.
56 lines
1.8 KiB
C
56 lines
1.8 KiB
C
/****************************************************************************
|
|
****************************************************************************
|
|
***
|
|
*** This header was automatically generated from a Linux kernel header
|
|
*** of the same name, to make information necessary for userspace to
|
|
*** call into the kernel available to libc. It contains only constants,
|
|
*** structures, and macros generated from the original header, and thus,
|
|
*** contains no copyrightable information.
|
|
***
|
|
****************************************************************************
|
|
****************************************************************************/
|
|
#ifndef _LINUX_ANDROID_POWER_H
|
|
#define _LINUX_ANDROID_POWER_H
|
|
|
|
#include <linux/list.h>
|
|
|
|
typedef struct
|
|
{
|
|
struct list_head link;
|
|
int lock_count;
|
|
int flags;
|
|
const char *name;
|
|
int expires;
|
|
} android_suspend_lock_t;
|
|
|
|
#define ANDROID_SUSPEND_LOCK_FLAG_COUNTED (1U << 0)
|
|
#define ANDROID_SUSPEND_LOCK_FLAG_USER_READABLE (1U << 1)
|
|
#define ANDROID_SUSPEND_LOCK_FLAG_USER_SET (1U << 2)
|
|
#define ANDROID_SUSPEND_LOCK_FLAG_USER_CLEAR (1U << 3)
|
|
#define ANDROID_SUSPEND_LOCK_FLAG_USER_INC (1U << 4)
|
|
#define ANDROID_SUSPEND_LOCK_FLAG_USER_DEC (1U << 5)
|
|
#define ANDROID_SUSPEND_LOCK_FLAG_USER_VISIBLE_MASK (0x1fU << 1)
|
|
#define ANDROID_SUSPEND_LOCK_AUTO_EXPIRE (1U << 6)
|
|
|
|
typedef struct android_early_suspend android_early_suspend_t;
|
|
struct android_early_suspend
|
|
{
|
|
struct list_head link;
|
|
int level;
|
|
void (*suspend)(android_early_suspend_t *h);
|
|
void (*resume)(android_early_suspend_t *h);
|
|
};
|
|
|
|
typedef enum {
|
|
ANDROID_CHARGING_STATE_UNKNOWN,
|
|
ANDROID_CHARGING_STATE_DISCHARGE,
|
|
ANDROID_CHARGING_STATE_MAINTAIN,
|
|
ANDROID_CHARGING_STATE_SLOW,
|
|
ANDROID_CHARGING_STATE_NORMAL,
|
|
ANDROID_CHARGING_STATE_FAST,
|
|
ANDROID_CHARGING_STATE_OVERHEAT
|
|
} android_charging_state_t;
|
|
|
|
#endif
|
|
|