aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/mach
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach')
-rw-r--r--sysdeps/mach/hurd/mmap.c5
-rw-r--r--sysdeps/mach/hurd/sysd-stdio.c4
2 files changed, 5 insertions, 4 deletions
diff --git a/sysdeps/mach/hurd/mmap.c b/sysdeps/mach/hurd/mmap.c
index 403678af9c..0e6a6e09f3 100644
--- a/sysdeps/mach/hurd/mmap.c
+++ b/sysdeps/mach/hurd/mmap.c
@@ -46,7 +46,8 @@ __mmap (__ptr_t addr, size_t len, int prot, int flags, int fd, off_t offset)
&& prot == (PROT_READ|PROT_WRITE)) /* cf VM_PROT_DEFAULT */
{
/* vm_allocate has (a little) less overhead in the kernel too. */
- err = __vm_allocate (&mapaddr, len, !(flags & MAP_FIXED));
+ err = __vm_allocate (__mach_task_self (), &mapaddr, len,
+ !(flags & MAP_FIXED));
if (err == KERN_NO_SPACE && (flags & MAP_FIXED))
{
@@ -54,7 +55,7 @@ __mmap (__ptr_t addr, size_t len, int prot, int flags, int fd, off_t offset)
/* The region is already allocated; deallocate it first. */
err = __vm_deallocate (__mach_task_self (), mapaddr, len);
if (!err)
- err = __vm_allocate (&mapaddr, len, 0);
+ err = __vm_allocate (__mach_task_self (), &mapaddr, len, 0);
}
return err ? (__ptr_t) (long int) __hurd_fail (err) : (__ptr_t) mapaddr;
diff --git a/sysdeps/mach/hurd/sysd-stdio.c b/sysdeps/mach/hurd/sysd-stdio.c
index d12804a4a0..fea9b56a96 100644
--- a/sysdeps/mach/hurd/sysd-stdio.c
+++ b/sysdeps/mach/hurd/sysd-stdio.c
@@ -61,7 +61,7 @@ __stdio_read (cookie, buf, n)
if (! fd)
return __hurd_fail (EBADF);
- if (err = _hurd_fd_read (fd, buf, &n))
+ if (err = _hurd_fd_read (fd, buf, &n, -1))
return fd_fail (fd, err);
return n;
@@ -86,7 +86,7 @@ __stdio_write (cookie, buf, n)
do
{
wrote = nleft;
- if (err = _hurd_fd_write (fd, buf, &wrote))
+ if (err = _hurd_fd_write (fd, buf, &wrote, -1))
return fd_fail (fd, err);
buf += wrote;
nleft -= wrote;