summaryrefslogtreecommitdiff
path: root/term/ptyio.c
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-07-11 05:32:24 +0000
committerThomas Bushnell <thomas@gnu.org>1999-07-11 05:32:24 +0000
commit405d07e1e45eb3aec2aec7149f4b9f9fa70d9843 (patch)
tree14b1854f4637c44b44e7e0aa3a2e8e641f334af4 /term/ptyio.c
parentcd19ba270757a36b05b776253391debcef50d65c (diff)
1999-07-09 Thomas Bushnell, BSG <tb@mit.edu>
* ptyio.c (pty_io_read): Use mmap instead of vm_allocate. * users.c (trivfs_S_io_read): Likewise.
Diffstat (limited to 'term/ptyio.c')
-rw-r--r--term/ptyio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/term/ptyio.c b/term/ptyio.c
index 7296eafd..94aec468 100644
--- a/term/ptyio.c
+++ b/term/ptyio.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.
Written by Michael I. Bushnell, p/BSG.
This file is part of the GNU Hurd.
@@ -333,7 +333,7 @@ pty_io_read (struct trivfs_protid *cred,
if (size > amount)
size = amount;
if (size > *datalen)
- vm_allocate (mach_task_self (), (vm_address_t *) data, size, 1);
+ *data = mmap (0, size, PROT_READ|PROT_WRITE, MAP_ANON, 0, 0);
*datalen = size;
if (control_byte)