Add easy parts (TCOOFF/TCOON) of the TCXONC linux termios ioctl.

This commit is contained in:
njoly 2013-12-27 16:58:50 +00:00
parent 27180d99da
commit 465ae6432a
1 changed files with 18 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: linux_termios.c,v 1.36 2008/07/04 10:13:52 matthias Exp $ */
/* $NetBSD: linux_termios.c,v 1.37 2013/12/27 16:58:50 njoly Exp $ */
/*-
* Copyright (c) 1995, 1998, 2008 The NetBSD Foundation, Inc.
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_termios.c,v 1.36 2008/07/04 10:13:52 matthias Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_termios.c,v 1.37 2013/12/27 16:58:50 njoly Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ptm.h"
@ -348,6 +348,22 @@ linux_ioctl_termios(struct lwp *l, const struct linux_sys_ioctl_args *uap, regis
DPRINTF(("TIOCSPTLCK %d\n", idat));
return 0;
#endif
case LINUX_TCXONC:
idat = (u_long)SCARG(uap, data);
switch (idat) {
case LINUX_TCOOFF:
SCARG(&ia, com) = TIOCSTOP;
break;
case LINUX_TCOON:
SCARG(&ia, com) = TIOCSTART;
break;
case LINUX_TCIOFF:
case LINUX_TCION:
default:
error = EINVAL;
goto out;
}
break;
default:
error = EINVAL;
goto out;