Commit 0ba22212d558e49ed6d44ce4834ccec7a7987b23

Authored by bellard
1 parent 5a4a898d

suppressed invalid TARGET_CMSG_FIRSTHDR macro


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3601 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 0 additions and 3 deletions
linux-user/syscall_defs.h
... ... @@ -164,9 +164,6 @@ struct target_cmsghdr {
164 164  
165 165 #define TARGET_CMSG_DATA(cmsg) ((unsigned char *) ((struct target_cmsghdr *) (cmsg) + 1))
166 166 #define TARGET_CMSG_NXTHDR(mhdr, cmsg) __target_cmsg_nxthdr (mhdr, cmsg)
167   -#define TARGET_CMSG_FIRSTHDR(mhdr) \
168   - ((size_t) tswapl((mhdr)->msg_controllen) >= sizeof (struct target_cmsghdr) \
169   - ? (struct target_cmsghdr *) tswapl((mhdr)->msg_control) : (struct target_cmsghdr *) NULL)
170 167 #define TARGET_CMSG_ALIGN(len) (((len) + sizeof (abi_long) - 1) \
171 168 & (size_t) ~(sizeof (abi_long) - 1))
172 169 #define TARGET_CMSG_SPACE(len) (TARGET_CMSG_ALIGN (len) \
... ...