diff options
author | Tao Bao <tbao@google.com> | 2015-01-28 10:07:51 -0800 |
---|---|---|
committer | Tao Bao <tbao@google.com> | 2015-02-06 14:48:41 -0800 |
commit | d7db594b8d1dab36b711bd887a9dd21675c87243 (patch) | |
tree | 214b4e6e4510386ffc05c9a43dd3c153c6cf89a0 /libc/kernel/uapi/linux/dm-log-userspace.h | |
parent | 11829be3e1a9e9e2271ba64a78c327bde6e044eb (diff) | |
download | android_bionic-d7db594b8d1dab36b711bd887a9dd21675c87243.tar.gz android_bionic-d7db594b8d1dab36b711bd887a9dd21675c87243.tar.bz2 android_bionic-d7db594b8d1dab36b711bd887a9dd21675c87243.zip |
Switch kernel header parsing to python libclang
Replace the tokenizer in cpp.py with libclang.
Bug: 18937958
Change-Id: I27630904c6d2849418cd5ca3d3c612ec3078686d
Diffstat (limited to 'libc/kernel/uapi/linux/dm-log-userspace.h')
-rw-r--r-- | libc/kernel/uapi/linux/dm-log-userspace.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libc/kernel/uapi/linux/dm-log-userspace.h b/libc/kernel/uapi/linux/dm-log-userspace.h index 47d45f799..1ce00f24e 100644 --- a/libc/kernel/uapi/linux/dm-log-userspace.h +++ b/libc/kernel/uapi/linux/dm-log-userspace.h @@ -42,20 +42,20 @@ #define DM_ULOG_IS_REMOTE_RECOVERING 17 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define DM_ULOG_REQUEST_MASK 0xFF -#define DM_ULOG_REQUEST_TYPE(request_type) (DM_ULOG_REQUEST_MASK & (request_type)) +#define DM_ULOG_REQUEST_TYPE(request_type) (DM_ULOG_REQUEST_MASK & (request_type)) #define DM_ULOG_REQUEST_VERSION 3 struct dm_ulog_request { /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ - uint64_t luid; - char uuid[DM_UUID_LEN]; - char padding[3]; - uint32_t version; + uint64_t luid; + char uuid[DM_UUID_LEN]; + char padding[3]; + uint32_t version; /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ - int32_t error; - uint32_t seq; - uint32_t request_type; - uint32_t data_size; + int32_t error; + uint32_t seq; + uint32_t request_type; + uint32_t data_size; /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ - char data[0]; + char data[0]; }; #endif |