this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Warn on unsupported ioctls

+6
+6
src/kernel/emulation/linux/ioctl/termios.c
··· 147 147 arg); 148 148 return IOCTL_HANDLED; 149 149 } 150 + case BSD_TIOCOUTQ: 151 + { 152 + *retval = __real_ioctl(fd, 0x00005411, arg); 153 + return IOCTL_HANDLED; 154 + } 150 155 default: 156 + __simple_printf("Passing thru unhandled ioctl 0x%x on fd %d\n", cmd, fd); 151 157 return IOCTL_PASS; 152 158 } 153 159 }