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/sync.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/sync.h')
-rw-r--r-- | libc/kernel/uapi/linux/sync.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/libc/kernel/uapi/linux/sync.h b/libc/kernel/uapi/linux/sync.h index ef74faf94..bbf6641d3 100644 --- a/libc/kernel/uapi/linux/sync.h +++ b/libc/kernel/uapi/linux/sync.h @@ -22,32 +22,32 @@ #include <linux/types.h> /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ struct sync_merge_data { - __s32 fd2; - char name[32]; - __s32 fence; + __s32 fd2; + char name[32]; + __s32 fence; /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ }; struct sync_pt_info { - __u32 len; - char obj_name[32]; + __u32 len; + char obj_name[32]; /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ - char driver_name[32]; - __s32 status; - __u64 timestamp_ns; - __u8 driver_data[0]; + char driver_name[32]; + __s32 status; + __u64 timestamp_ns; + __u8 driver_data[0]; /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ }; struct sync_fence_info_data { - __u32 len; - char name[32]; + __u32 len; + char name[32]; /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ - __s32 status; - __u8 pt_info[0]; + __s32 status; + __u8 pt_info[0]; }; #define SYNC_IOC_MAGIC '>' /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define SYNC_IOC_WAIT _IOW(SYNC_IOC_MAGIC, 0, __s32) #define SYNC_IOC_MERGE _IOWR(SYNC_IOC_MAGIC, 1, struct sync_merge_data) -#define SYNC_IOC_FENCE_INFO _IOWR(SYNC_IOC_MAGIC, 2, struct sync_fence_info_data) +#define SYNC_IOC_FENCE_INFO _IOWR(SYNC_IOC_MAGIC, 2, struct sync_fence_info_data) #endif /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ |