Skip to content

Commit

Permalink
Fix __sendmmsg prototype guards
Browse files Browse the repository at this point in the history
Add __USE_GNU guards on 'socket/sys/socket.h' __sendmmsg prototype.
  • Loading branch information
Adhemerval Zanella committed Dec 11, 2014
1 parent d0276e1 commit 7f29694
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2014-12-11 Adhemerval Zanella <Azanella@linux.vnet.ibm.com>

* include/sys/socket.h (__sendmmsg): Add __USE_GNU guards on function
prototype.

2014-12-11 Steve Ellcey <sellcey@imgtec.com>

* sysdeps/mips/dl-trampoline.c: Modify switch expression to have
Expand Down
2 changes: 2 additions & 0 deletions include/sys/socket.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,11 @@ extern ssize_t __libc_sendmsg (int __fd, const struct msghdr *__message,
extern ssize_t __sendmsg (int __fd, const struct msghdr *__message,
int __flags) attribute_hidden;

#ifdef __USE_GNU
extern int __sendmmsg (int __fd, struct mmsghdr *__vmessages,
unsigned int __vlen, int __flags);
libc_hidden_proto (__sendmmsg)
#endif

/* Receive a message as described by MESSAGE from socket FD.
Returns the number of bytes read or -1 for errors. */
Expand Down

0 comments on commit 7f29694

Please sign in to comment.