diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-04-11 23:18:15 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-04-11 23:20:47 +0200 |
commit | f1505f3dc03218cce46c278dbd6fffc2b3809bd7 (patch) | |
tree | b95cba51f83419b8c0809c1e752897fe97ac4f4b /libmachdev | |
parent | 6357d0b257044d639f8321c68d2fd21bc7e1eda5 (diff) | |
download | hurd-f1505f3dc03218cce46c278dbd6fffc2b3809bd7.tar.gz hurd-f1505f3dc03218cce46c278dbd6fffc2b3809bd7.tar.bz2 hurd-f1505f3dc03218cce46c278dbd6fffc2b3809bd7.zip |
Call _hurd_libc_proc_init when available
glibc 2.33 separated out _hurd_libc_proc_init from _hurd_init, so we
have to additionally call it.
* configure.ac (_hurd_libc_proc_init): Detect function.
* libdiskfs/boot-start.c (diskfs_S_fsys_init): Call
_hurd_libc_proc_init.
* libmachdev/trivfs_server.c (trivfs_S_fsys_init): Call
_hurd_libc_proc_init.
Diffstat (limited to 'libmachdev')
-rw-r--r-- | libmachdev/trivfs_server.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libmachdev/trivfs_server.c b/libmachdev/trivfs_server.c index 4d9b415d..833bfbff 100644 --- a/libmachdev/trivfs_server.c +++ b/libmachdev/trivfs_server.c @@ -318,6 +318,9 @@ trivfs_S_fsys_init (struct trivfs_control *fsys, portarray[INIT_PORT_CRDIR] = root; portarray[INIT_PORT_CWDIR] = root; _hurd_init (0, machdev_argv, portarray, INIT_PORT_MAX, NULL, 0); +#ifdef HAVE__HURD_LIBC_PROC_INIT + _hurd_libc_proc_init(diskfs_argv); +#endif /* Mark us as important. */ proc = getproc (); |