From 51ec5cb28a542f6eb8596050c678a2438084b3de Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Thu, 20 Jun 1996 21:32:45 +0000 Subject: [PATCH] Thu Jun 20 12:18:21 1996 Miles Bader * sysdeps/mach/hurd/brk.c (_hurd_brk): Initialize to 0. * hurd/getuids.c (getuids): New weak link to __getuids. --- ChangeLog | 6 ++++++ sysdeps/mach/hurd/brk.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 77ffce2..740ee72 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Jun 20 12:18:21 1996 Miles Bader + + * sysdeps/mach/hurd/brk.c (_hurd_brk): Initialize to 0. + + * hurd/getuids.c (getuids): New weak link to __getuids. + Wed Jun 19 10:21:24 1996 Miles Bader * hurd/hurdlookup.c (__hurd_file_name_lookup_retry, diff --git a/sysdeps/mach/hurd/brk.c b/sysdeps/mach/hurd/brk.c index 73a3399..4901ec1 100644 --- a/sysdeps/mach/hurd/brk.c +++ b/sysdeps/mach/hurd/brk.c @@ -33,12 +33,12 @@ vm_address_t _hurd_data_end; /* Up to this address is actually available to the user. Pages beyond the one containing this address allow no access. */ -vm_address_t _hurd_brk; +vm_address_t _hurd_brk = 0; /* This name is used by the Linux crtbeginS.o for reasons you don't even want to think about it. It's just easier to provide some definition for it than even to explain the braindamage involved. */ -vm_address_t ___brk_addr = 0; +weak_alias (_hurd_brk, ___brk_addr) struct mutex _hurd_brk_lock; -- 2.7.4