sockios.h 505 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _ASM_ALPHA_SOCKIOS_H
  3. #define _ASM_ALPHA_SOCKIOS_H
  4. /* Socket-level I/O control calls. */
  5. #define FIOGETOWN _IOR('f', 123, int)
  6. #define FIOSETOWN _IOW('f', 124, int)
  7. #define SIOCATMARK _IOR('s', 7, int)
  8. #define SIOCSPGRP _IOW('s', 8, pid_t)
  9. #define SIOCGPGRP _IOR('s', 9, pid_t)
  10. #define SIOCGSTAMP_OLD 0x8906 /* Get stamp (timeval) */
  11. #define SIOCGSTAMPNS_OLD 0x8907 /* Get stamp (timespec) */
  12. #endif /* _ASM_ALPHA_SOCKIOS_H */