In glibc 2.25, a few things we use are marked as deprecated. On my system, this leads to the only remaining compiler warnings. The full list: - `readdir_r` (recommending plain `readdir`, which is apparently thread-safe as long as no two threads access the same directory stream simultaneously on glibc and solaris - see e.g. https://github.com/rust-lang/rust/issues/34668) - `sys_errlist` and `sys_nerr` (recommending `strerror` or `strerror_r`)
In glibc 2.25, a few things we use are marked as deprecated. On my system, this leads to the only remaining compiler warnings.
The full list:
readdir_r(recommending plainreaddir, which is apparently thread-safe as long as no two threads access the same directory stream simultaneously on glibc and solaris - see e.g.readdir_ris deprecated as of glibc-2.24 rust-lang/rust#34668)sys_errlistandsys_nerr(recommendingstrerrororstrerror_r)