diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-08-08 13:58:34 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-08 14:03:21 -0700 |
commit | 64948ad77534f035311fd3e1086477661c8f63b1 (patch) | |
tree | 01654e2c8619bf38da904b85b557fbc0144625eb /Documentation | |
parent | Sync with maint to grab trivial doc fixes (diff) | |
download | tgif-64948ad77534f035311fd3e1086477661c8f63b1.tar.xz |
Git 1.8.4-rc2
This is with mostly minor documentation and test updates, nothing
spectacular except for removal of funky lstat(2) emulation on Cygwin.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/RelNotes/1.8.4.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/RelNotes/1.8.4.txt b/Documentation/RelNotes/1.8.4.txt index b4f8737c5a..b0a59ec234 100644 --- a/Documentation/RelNotes/1.8.4.txt +++ b/Documentation/RelNotes/1.8.4.txt @@ -242,6 +242,13 @@ UI, Workflows & Features Performance, Internal Implementation, etc. + * On Cygwin, we used to use our own lstat(2) emulation that is + allegedly faster than the platform one in codepaths where some of + the information it returns did not matter, but it started to bite + us in a few codepaths where the trick it uses to cheat does show + breakages. This emulation has been removed and we use the native + lstat(2) emulation supplied by Cygwin now. + * The function attributes extensions are used to catch mistakes in use of our own variadic functions that use NULL sentinel at the end (i.e. like execl(3)) and format strings (i.e. like printf(3)). |