]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #40024 - raphlinus:readdir, r=alexcrichton
authorEduard-Mihai Burtescu <edy.burt@gmail.com>
Sat, 25 Feb 2017 12:13:32 +0000 (14:13 +0200)
committerGitHub <noreply@github.com>
Sat, 25 Feb 2017 12:13:32 +0000 (14:13 +0200)
Switch Fuchsia to readdir (instead of readdir_r)

The readdir_r function is deprecated on newer Posix systems because of
various problems, and not implemented at all for Fuchsia. There are
already implementations using both, and this patch switches Fuchsia
over to the readdir-based one.

Fixes #40021 for Fuchsia, but that issue also contains discussion of
what should happen for other Posix systems.


Trivial merge