about summary refs log tree commit diff
path: root/sysdeps/mach
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2017-09-03 04:25:35 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2017-09-03 04:26:31 +0200
commitb96aca4d05b2da5d5134b1c3176b16f48db9fe4d (patch)
treeb3a9a0915f8c141ff4a474edf92df8ddc2d05bbb /sysdeps/mach
parent819ea3347e3a30a611488ceeec53650baaeb7961 (diff)
downloadglibc-b96aca4d05b2da5d5134b1c3176b16f48db9fe4d.tar.gz
glibc-b96aca4d05b2da5d5134b1c3176b16f48db9fe4d.tar.xz
glibc-b96aca4d05b2da5d5134b1c3176b16f48db9fe4d.zip
hurd: Fix rtld link
	* sysdeps/mach/hurd/dl-sysdep.c (__sbrk): New function.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r--sysdeps/mach/hurd/dl-sysdep.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c
index 2bfa64f02a..dec00f35f0 100644
--- a/sysdeps/mach/hurd/dl-sysdep.c
+++ b/sysdeps/mach/hurd/dl-sysdep.c
@@ -591,6 +591,16 @@ __getcwd (char *buf, size_t size)
   return NULL;
 }
 
+/* This is used by dl-tunables.c to strdup strings.  We can just make this a
+   mere allocation.  */
+void *
+__sbrk (intptr_t increment)
+{
+  vm_address_t addr;
+  __vm_allocate (__mach_task_self (), &addr, increment, 1);
+  return (void *) addr;
+}
+
 void weak_function attribute_hidden
 _exit (int status)
 {