From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17403 invoked by alias); 24 Aug 2018 13:12:39 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 16322 invoked by uid 10080); 24 Aug 2018 13:12:39 -0000 Date: Fri, 24 Aug 2018 13:12:00 -0000 Message-ID: <20180824131239.16315.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Sebastian Huber To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] RTEMS: Introduce X-Act-Checkin: newlib-cygwin X-Git-Author: Sebastian Huber X-Git-Refname: refs/heads/master X-Git-Oldrev: 764d748c9cc940cee08cdb22c19c2bc3a008750e X-Git-Newrev: a2a8600f7d3f1c25245c2924c13597556ace4f77 X-SW-Source: 2018-q3/txt/msg00097.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=a2a8600f7d3f1c25245c2924c13597556ace4f77 commit a2a8600f7d3f1c25245c2924c13597556ace4f77 Author: Sebastian Huber Date: Thu Aug 9 07:04:00 2018 +0200 RTEMS: Introduce This helps to avoid Newlib updates due to FreeBSD kernel space changes. Signed-off-by: Sebastian Huber Diff: --- newlib/libc/sys/rtems/include/sys/socket.h | 57 ++---------------------------- 1 file changed, 3 insertions(+), 54 deletions(-) diff --git a/newlib/libc/sys/rtems/include/sys/socket.h b/newlib/libc/sys/rtems/include/sys/socket.h index d97e04c..203dfeb 100644 --- a/newlib/libc/sys/rtems/include/sys/socket.h +++ b/newlib/libc/sys/rtems/include/sys/socket.h @@ -113,14 +113,6 @@ typedef __uintptr_t uintptr_t; */ #define SOCK_CLOEXEC 0x10000000 #define SOCK_NONBLOCK 0x20000000 -#ifdef _KERNEL -/* - * Flags for accept1(), kern_accept4() and solisten_dequeue, in addition - * to SOCK_CLOEXEC and SOCK_NONBLOCK. - */ -#define ACCEPT4_INHERIT 0x1 -#define ACCEPT4_COMPAT 0x2 -#endif /* _KERNEL */ #endif /* __BSD_VISIBLE */ /* @@ -455,9 +447,6 @@ struct msghdr { #define MSG_NBIO 0x00004000 /* FIONBIO mode, used by fifofs */ #define MSG_COMPAT 0x00008000 /* used in sendit() */ #endif -#ifdef _KERNEL -#define MSG_SOCALLBCK 0x00010000 /* for use by socket callbacks - soreceive (TCP) */ -#endif #if __POSIX_VISIBLE >= 200809 #define MSG_NOSIGNAL 0x00020000 /* do not generate SIGPIPE on EOF */ #endif @@ -465,9 +454,6 @@ struct msghdr { #define MSG_CMSG_CLOEXEC 0x00040000 /* make received fds close-on-exec */ #define MSG_WAITFORONE 0x00080000 /* for recvmmsg() */ #endif -#ifdef _KERNEL -#define MSG_MORETOCOME 0x00100000 /* additional data pending */ -#endif /* * Header for ancillary data objects in msg_control buffer. @@ -555,10 +541,6 @@ struct sockcred { #define CMSG_LEN(l) (_ALIGN(sizeof(struct cmsghdr)) + (l)) #endif -#ifdef _KERNEL -#define CMSG_ALIGN(n) _ALIGN(n) -#endif - /* "Socket"-level control message types: */ #define SCM_RIGHTS 0x01 /* access rights (array of int) */ #if __BSD_VISIBLE @@ -639,10 +621,6 @@ struct sf_hdtr { #define SF_NOCACHE 0x00000010 #define SF_FLAGS(rh, flags) (((rh) << 16) | (flags)) -#ifdef _KERNEL -#define SF_READAHEAD(flags) ((flags) >> 16) -#endif /* _KERNEL */ - /* * Sendmmsg/recvmmsg specific structure(s) */ @@ -696,36 +674,7 @@ __END_DECLS #endif /* !_KERNEL */ #ifdef _KERNEL -struct socket; - -struct tcpcb *so_sototcpcb(struct socket *so); -struct inpcb *so_sotoinpcb(struct socket *so); -struct sockbuf *so_sockbuf_snd(struct socket *); -struct sockbuf *so_sockbuf_rcv(struct socket *); - -int so_state_get(const struct socket *); -void so_state_set(struct socket *, int); - -int so_options_get(const struct socket *); -void so_options_set(struct socket *, int); - -int so_error_get(const struct socket *); -void so_error_set(struct socket *, int); - -int so_linger_get(const struct socket *); -void so_linger_set(struct socket *, int); - -struct protosw *so_protosw_get(const struct socket *); -void so_protosw_set(struct socket *, struct protosw *); - -void so_sorwakeup_locked(struct socket *so); -void so_sowwakeup_locked(struct socket *so); - -void so_sorwakeup(struct socket *so); -void so_sowwakeup(struct socket *so); - -void so_lock(struct socket *so); -void so_unlock(struct socket *so); - -#endif /* _KERNEL */ +/* Header file provided outside of Newlib */ +#include +#endif #endif /* !_SYS_SOCKET_H_ */