Lines Matching +full:i386 +full:- +full:linux +full:- +full:user
5 * later version. See the COPYING file in the top-level directory.
15 * This defines are ABI conformant as far as Linux supports these ...
29 #define TARGET_SO_OOBINLINE 0x0100 /* Receive out-of-band data in-band.
38 #define TARGET_SO_SNDLOWAT 0x1003 /* send low-water mark */
39 #define TARGET_SO_RCVLOWAT 0x1004 /* receive low-water mark */
46 /* linux-specific, might as well be the same as on i386 */
54 /* Security levels - as per NRL IPv6 - don't actually do anything */
74 /** sock_type - Socket types
77 * override the enum sock_type in include/linux/net.h, so
80 * @SOCK_DGRAM - datagram (conn.less) socket
81 * @SOCK_STREAM - stream (connection) socket
82 * @SOCK_RAW - raw socket
83 * @SOCK_RDM - reliably-delivered message
84 * @SOCK_SEQPACKET - sequential packet socket
85 * @SOCK_DCCP - Datagram Congestion Control Protocol socket
86 * @SOCK_PACKET - linux specific way of getting packets at the dev level.
87 * For writing rarp and other similar things on the user
89 * @SOCK_CLOEXEC - sets the close-on-exec (FD_CLOEXEC) flag.
90 * @SOCK_NONBLOCK - sets the O_NONBLOCK file status flag.
106 #define TARGET_SOCK_TYPE_MASK 0xf /* Covers up to TARGET_SOCK_MAX-1. */