June 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
26 | 27 | 28 | 29 | 30 | 31 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
01: #ifndef __ASM_GENERIC_SOCKIOS_H 02: #define __ASM_GENERIC_SOCKIOS_H 03: 04: /* Socket-level I/O control calls. */ 05: #define FIOSETOWN 0x8901 06: #define SIOCSPGRP 0x8902 07: #define FIOGETOWN 0x8903 08: #define SIOCGPGRP 0x8904 09: #define SIOCATMARK 0x8905 10: #define SIOCGSTAMP 0x8906 /* Get stamp (timeval) */ 11: #define SIOCGSTAMPNS 0x8907 /* Get stamp (timespec) */ 12: 13: #endif /* __ASM_GENERIC_SOCKIOS_H */ 14: