History log of /bionic/libc/stdio/vfprintf.c
Revision Date Author Comments
9145ad3f0ae917e6daddbceaa541dfbe208a3bc5 26-Jul-2012 Nick Kralevich <nnk@google.com> vfprintf: fix spelling.

Change-Id: I6dc611143fb1f3e9ccf0a77b40ee48a3c1d72ca9
c7dcd67d56701a10c14019b17c9499249ab6c252 14-Jun-2012 Yaroslav Miroshnychenko <yaroslav.miroshnychenko@sonymobile.com> Add missing va_end() to prevent stack corruptions

Added va_end() for copied variable arguments lists
in __vfprintf() and __find_arguments().
This is by C standard.
Important for systems which pass arguments in registers.

Change-Id: I7ac42beaa6645bfe856c18132253352dae29ea37
f582340a6a48588aa50da17e1620e8f91b146941 12-Feb-2011 Kenny Root <kroot@google.com> Fix the handle locking in stdio

Fix the handle locking in stdio to use flockfile/funlockfile
internally when and where required. Macros in <stdio.h> are updated
to automatically call the underlying functions when the process is
threaded to obtain the necessary locking. A private mutex is added
to protect __sglue, the internal list of FILE handles, and another
to protect the one-time initialization. Some routines in libc that
use getc() change to use getc_unlocked() as they're either protected
by their own lock or aren't thread-safe routines anyway.

Based on OpenBSD change by guenther@openbsd.org
http://www.mail-archive.com/source-changes@cvs.openbsd.org/msg01015.html

Bug: 3446659
Change-Id: Ie82116e358c541718d6709ec45ca6796be5a007b
e9d0518394dda010c8873dbd0ca4de7db5a5bbec 09-Jan-2011 Glenn Kasten <gkasten@google.com> Bug 3330205 Remove unnecessary static variable

Change-Id: I7e781d26d6565952712f8fb0274d336462b441fd
0946b1f6e9223a0a82306e40fc2b41ebddb1f7ef 09-Jan-2011 Glenn Kasten <gkasten@google.com> Bug 3330205 Put blanks and zeroes in const area

Change-Id: I8f25aebd1ded3617dc60951271767281f73b8684
1dc9e472e19acfe6dc7f41e429236e7eef7ceda1 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
1767f908af327fa388b1c66883760ad851267013 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
a27d2baa0c1a2ec70f47ea9199b1dd6762c8a349 21-Oct-2008 The Android Open Source Project <initial-contribution@android.com> Initial Contribution