public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] hurd: Initializy _dl_pagesize early in static builds
@ 2024-01-04 22:49 Samuel Thibault
  0 siblings, 0 replies; only message in thread
From: Samuel Thibault @ 2024-01-04 22:49 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=fbfe0b20ab82550de65827e70aa89d8ae462b34d

commit fbfe0b20ab82550de65827e70aa89d8ae462b34d
Author: Sergey Bugaev <bugaevc@gmail.com>
Date:   Wed Jan 3 20:14:44 2024 +0300

    hurd: Initializy _dl_pagesize early in static builds
    
    We fetch __vm_page_size as the very first RPC that we do, inside
    __mach_init (). Propagate that to _dl_pagesize ASAP after that,
    before any other initialization.
    
    In dynamic builds, this is already done immediately after
    __mach_init (), inside _dl_sysdep_start ().
    
    Signed-off-by: Sergey Bugaev <bugaevc@gmail.com>
    Message-ID: <20240103171502.1358371-12-bugaevc@gmail.com>

Diff:
---
 sysdeps/mach/hurd/init-first.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/sysdeps/mach/hurd/init-first.c b/sysdeps/mach/hurd/init-first.c
index 26ccd37e55..22c357474a 100644
--- a/sysdeps/mach/hurd/init-first.c
+++ b/sysdeps/mach/hurd/init-first.c
@@ -162,6 +162,10 @@ first_init (void)
   /* Initialize data structures so we can do RPCs.  */
   __mach_init ();
 
+#ifndef SHARED
+  GLRO(dl_pagesize) = __vm_page_size;
+#endif
+
 #if USE_INIT1_TCBHEAD
   _hurd_tls_init (&__init1_tcbhead, 0);
 #endif

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-01-04 22:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-04 22:49 [glibc] hurd: Initializy _dl_pagesize early in static builds Samuel Thibault

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).