diff options
author | Roland McGrath <roland@hack.frob.com> | 2015-05-18 15:44:53 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2015-05-18 15:44:53 -0700 |
commit | 46f894d8c60afcc06056a376340df2f378694551 (patch) | |
tree | 305ed131ad8fa65b767183c849f716213ec8b003 /ChangeLog | |
parent | eefe64b9a17be2d4553b5b6185a12d6eaa8771c1 (diff) | |
download | glibc-46f894d8c60afcc06056a376340df2f378694551.tar.gz glibc-46f894d8c60afcc06056a376340df2f378694551.tar.xz glibc-46f894d8c60afcc06056a376340df2f378694551.zip |
Refactor opendir.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index b7f3c61661..1c4f896689 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +2015-05-18 Roland McGrath <roland@hack.frob.com> + + * sysdeps/posix/opendir.c: Include <stdbool.h>. + (invalid_name): New function, broken out of ... + (__opendirat): ... here. Call it. + (need_isdir_precheck): New function, broken out of ... + (__opendirat): ... here. Call it. + Use __fxstatat64, not __xstatat64. + (opendir_oflags): New function, broken out of ... + (__opendirat): ... here. Call it. + (opendir_tail): New function, broken out of ... + (__opendirat): ... here. Call it. + (__opendir): Call invalid_name, need_isdir_precheck, __xstat64, and + opendir_tail, rather than punting to __opendirat. + (__opendirat): Conditionalize function definition on [IS_IN (libc)]. + 2015-05-18 Siddhesh Poyarekar <siddhesh@redhat.com> * .gitignore: Ignore generated *.pyc. |