[hurd] Call _dl_sort_maps_init in _dl_sysdep_start

This follows 15a0c5730d ("elf: Fix slow DSO sorting behavior in
dynamic loader (BZ #17645)").
This commit is contained in:
Samuel Thibault 2022-01-15 14:21:53 +01:00
parent 4974c7cd8f
commit f05faf5f22
1 changed files with 3 additions and 0 deletions

View File

@ -98,6 +98,9 @@ _dl_sysdep_start (void **start_argptr,
__tunables_init (_environ);
/* Initialize DSO sorting algorithm after tunables. */
_dl_sort_maps_init ();
#ifdef DL_SYSDEP_INIT
DL_SYSDEP_INIT;
#endif