diff options
| author | manu <manu@NetBSD.org> | 2001-06-16 21:44:27 +0000 |
|---|---|---|
| committer | manu <manu@NetBSD.org> | 2001-06-16 21:44:27 +0000 |
| commit | a7cdf998ecec39b6fe45766fcbc828fc7315377d (patch) | |
| tree | df0dbfcbf9e61005b17a4065ccb8ca29153899b6 /sys/compat/linux/common/linux_exec.c | |
| parent | ce10f4da5bad807bd71687af06bdc098188c53b9 (diff) | |
Removed obsoletes EMUL_NO_BSD_ASYNCIO_PIPE and EMUL_NO_SIGIO_ON_READ flags.
Async I/O OS specifities should now handled in OS specific code. Linux
has been done, but other emulation should be handled. See case LINUX_F_SETFL
in sys/compat/linux/common/linux_file.c:linux_sys_fcntl() for more details.
The data that has been collected yet:
Net Free Open Linux SunOS AIX OSF1 Darwin
send SIGIO to write end of pipe Y N N N N N Y Y
send SIGIO to read end of pipe Y Y N N N ? Y ?
send SIGIO to write end of socket Y Y Y N N Y Y Y
send SIGIO to read end of socket Y Y Y Y Y ? Y ?
Diffstat (limited to 'sys/compat/linux/common/linux_exec.c')
| -rw-r--r-- | sys/compat/linux/common/linux_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/common/linux_exec.c b/sys/compat/linux/common/linux_exec.c index c140ae80aae..c375a3948bb 100644 --- a/sys/compat/linux/common/linux_exec.c +++ b/sys/compat/linux/common/linux_exec.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_exec.c,v 1.50 2001/05/07 09:55:13 manu Exp $ */ +/* $NetBSD: linux_exec.c,v 1.51 2001/06/16 21:44:29 manu Exp $ */ /*- * Copyright (c) 1994, 1995, 1998, 2000 The NetBSD Foundation, Inc. @@ -113,7 +113,7 @@ const struct emul emul_linux = { "linux", "/emul/linux", #ifndef __HAVE_MINIMAL_EMUL - EMUL_NO_BSD_ASYNCIO_PIPE | EMUL_NO_SIGIO_ON_READ, + 0, (int*)native_to_linux_errno, LINUX_SYS_syscall, LINUX_SYS_MAXSYSCALL, |
