summaryrefslogtreecommitdiffstats
path: root/libc/stdio/tmpnam.c
Commit message (Collapse)AuthorAgeFilesLines
* Extend __gen_tempname with mode argumentMikhail Gusarov2009-11-091-1/+1
| | | | | | | | | | sem_open(3) needs to create a temporary file in a way which can't be efficiently implemented in terms of POSIX API. Extend __gen_tempname with mode_t mode argument in order to ease sem_open implementation. Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* trim Experimentally off and uncommented hiddenAustin Foxley2009-09-181-1/+0
| | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* BIG BIG commit: all left files merged from trunk [rev 22714]. Currenntly ↵Carmelo Amoroso2008-07-091-1/+1
| | | | NPTL sh4 port build and work fine. All committed to allow Khem Ray working on a working branch to integrate the ARM nptl port. MIPS nptl port not tested but should still building and working fine. There are some other part non yet merged with trunk (misc/internals and some headers file that need some more work). Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Merge from trunk."Steven J. Hill"2006-02-261-25/+32
|
* Merge from trunk."Steven J. Hill"2005-12-021-1/+1
|
* Remove function declartions from include/features.h, createEric Andersen2002-04-011-0/+1
| | | | | a separate header file for those, and fixup references. -Erik
* Rework __gen_tempname() to better match glibc, and add mkstemp64(),Eric Andersen2002-03-311-7/+3
| | | | | which is needed for busybox ash when using largefile support. -Erik
* Update temp file handling and use a single function to do allEric Andersen2001-04-181-50/+33
| | | | | the heavy lifting (most of the heavy lifting stolen from glibc, but reduced a bit).
* Add in tmpnam() support from David Whedon <dwhedon@gordian.com>,Eric Andersen2000-11-151-0/+68
rework include/stdio.h, and fix up the resultant damage.