xref: /openbmc/linux/arch/sh/include/uapi/asm/sockios.h (revision 8c709f9a)
16f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
20a9426dfSDavid Howells #ifndef __ASM_SH_SOCKIOS_H
30a9426dfSDavid Howells #define __ASM_SH_SOCKIOS_H
40a9426dfSDavid Howells 
50a9426dfSDavid Howells /* Socket-level I/O control calls. */
60a9426dfSDavid Howells #define FIOGETOWN	_IOR('f', 123, int)
70a9426dfSDavid Howells #define FIOSETOWN 	_IOW('f', 124, int)
80a9426dfSDavid Howells 
90a9426dfSDavid Howells #define SIOCATMARK	_IOR('s', 7, int)
100a9426dfSDavid Howells #define SIOCSPGRP	_IOW('s', 8, pid_t)
110a9426dfSDavid Howells #define SIOCGPGRP	_IOR('s', 9, pid_t)
120a9426dfSDavid Howells 
138c709f9aSArnd Bergmann #define SIOCGSTAMP_OLD	_IOR('s', 100, struct __kernel_old_timeval) /* Get stamp (timeval) */
148c709f9aSArnd Bergmann #define SIOCGSTAMPNS_OLD _IOR('s', 101, struct __kernel_old_timespec) /* Get stamp (timespec) */
150768e170SArnd Bergmann 
160a9426dfSDavid Howells #endif /* __ASM_SH_SOCKIOS_H */
17