ioctls.h (b651b80822fa8cb66ca30087ac7fbc75507ae5d2) ioctls.h (e865b97ff4d924a81c28b9d9f3d6fe3e198bcdb9)
1 /* emulated ioctl list */
2
3 IOCTL(TCGETS, IOC_R, MK_PTR(MK_STRUCT(STRUCT_termios)))
4 IOCTL(TCSETS, IOC_W, MK_PTR(MK_STRUCT(STRUCT_termios)))
5 IOCTL(TCSETSF, IOC_W, MK_PTR(MK_STRUCT(STRUCT_termios)))
6 IOCTL(TCSETSW, IOC_W, MK_PTR(MK_STRUCT(STRUCT_termios)))
7 IOCTL(TIOCGWINSZ, IOC_R, MK_PTR(MK_STRUCT(STRUCT_winsize)))
8 IOCTL(TIOCSWINSZ, IOC_W, MK_PTR(MK_STRUCT(STRUCT_winsize)))

--- 560 unchanged lines hidden (view full) ---

569 MK_PTR(MK_STRUCT(STRUCT_dm_ioctl)))
570 IOCTL_SPECIAL(DM_DEV_SET_GEOMETRY, IOC_RW, do_ioctl_dm,
571 MK_PTR(MK_STRUCT(STRUCT_dm_ioctl)))
572 IOCTL_SPECIAL(SIOCADDRT, IOC_W, do_ioctl_rt,
573 MK_PTR(MK_STRUCT(STRUCT_rtentry)))
574 IOCTL_SPECIAL(SIOCDELRT, IOC_W, do_ioctl_rt,
575 MK_PTR(MK_STRUCT(STRUCT_rtentry)))
576
1 /* emulated ioctl list */
2
3 IOCTL(TCGETS, IOC_R, MK_PTR(MK_STRUCT(STRUCT_termios)))
4 IOCTL(TCSETS, IOC_W, MK_PTR(MK_STRUCT(STRUCT_termios)))
5 IOCTL(TCSETSF, IOC_W, MK_PTR(MK_STRUCT(STRUCT_termios)))
6 IOCTL(TCSETSW, IOC_W, MK_PTR(MK_STRUCT(STRUCT_termios)))
7 IOCTL(TIOCGWINSZ, IOC_R, MK_PTR(MK_STRUCT(STRUCT_winsize)))
8 IOCTL(TIOCSWINSZ, IOC_W, MK_PTR(MK_STRUCT(STRUCT_winsize)))

--- 560 unchanged lines hidden (view full) ---

569 MK_PTR(MK_STRUCT(STRUCT_dm_ioctl)))
570 IOCTL_SPECIAL(DM_DEV_SET_GEOMETRY, IOC_RW, do_ioctl_dm,
571 MK_PTR(MK_STRUCT(STRUCT_dm_ioctl)))
572 IOCTL_SPECIAL(SIOCADDRT, IOC_W, do_ioctl_rt,
573 MK_PTR(MK_STRUCT(STRUCT_rtentry)))
574 IOCTL_SPECIAL(SIOCDELRT, IOC_W, do_ioctl_rt,
575 MK_PTR(MK_STRUCT(STRUCT_rtentry)))
576
577#ifdef HAVE_DRM_H
578 IOCTL_SPECIAL(DRM_IOCTL_VERSION, IOC_RW, do_ioctl_drm,
579 MK_PTR(MK_STRUCT(STRUCT_drm_version)))
580#endif
581
577#ifdef TARGET_TIOCSTART
578 IOCTL_IGNORE(TIOCSTART)
579 IOCTL_IGNORE(TIOCSTOP)
580#endif
581
582#ifdef CONFIG_KCOV
583 IOCTL(KCOV_ENABLE, 0, TYPE_NULL)
584 IOCTL(KCOV_DISABLE, 0, TYPE_NULL)
585 IOCTL(KCOV_INIT_TRACE, IOC_R, TYPE_ULONG)
586#endif
582#ifdef TARGET_TIOCSTART
583 IOCTL_IGNORE(TIOCSTART)
584 IOCTL_IGNORE(TIOCSTOP)
585#endif
586
587#ifdef CONFIG_KCOV
588 IOCTL(KCOV_ENABLE, 0, TYPE_NULL)
589 IOCTL(KCOV_DISABLE, 0, TYPE_NULL)
590 IOCTL(KCOV_INIT_TRACE, IOC_R, TYPE_ULONG)
591#endif