diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-08-14 06:37:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-08-14 06:37:17 +0000 |
commit | 7b3ba2c4ebbe28d60224d79c7b7aa2a0e28fca78 (patch) | |
tree | 960fcc91a4fa99536323e3caa73f871a4481824d /NEWS | |
parent | 1bfa05cfaa4177476fd57851d867c5d1a276a34b (diff) | |
download | glibc-7b3ba2c4ebbe28d60224d79c7b7aa2a0e28fca78.tar.gz glibc-7b3ba2c4ebbe28d60224d79c7b7aa2a0e28fca78.tar.xz glibc-7b3ba2c4ebbe28d60224d79c7b7aa2a0e28fca78.zip |
[BZ #6544]
* libio/fmemopen.c: Implement binary mode. In this mode no NUL byte gets added to writes and seeks from the end use the length of the buffer and not the currently terminating NUL byte.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS index fd7f7c9151..c3ceaba42e 100644 --- a/NEWS +++ b/NEWS @@ -28,6 +28,11 @@ Version 2.9 * Implement "e" option for popen to open file descriptor with the close-on-exec flag set. Implemented by Ulrich Drepper. +* Implement "b" mode for fmemopen. In this mode writes writes don't + implicitly add a NUL byte and seeks from the end of the buffer really + use the buffer end, not the string length as the basis. + Implemented by Ulrich Drepper. + * Many functions, exported and internal, now atomically set the close-on-exec flag when run on a sufficiently new kernel. Implemented by Ulrich Drepper. |