summaryrefslogtreecommitdiffstats
path: root/libc/misc/dirent/readdir64.c
Commit message (Collapse)AuthorAgeFilesLines
* trim Experimentally off and uncommented hiddenBernhard Reutner-Fischer2009-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: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* Last portion of libc_hidden_proto removal.Denis Vlasenko2008-11-201-1/+1
| | | | | Appears to build fine (several .configs tried)
* - remove a couple of duplicate includesBernhard Reutner-Fischer2008-08-271-1/+0
|
* Major cleanup of internal mutex locking. Be more consistant in how we doEric Andersen2006-12-071-2/+2
| | | | | | | things, and avoid potential deadlocks caused when a thread holding a uClibc internal lock get canceled and terminates without releasing the lock. This change also provides a single place, bits/uClibc_mutex.h, for thread libraries to modify to change all instances of internal locking.
* Use _lfs_64.h in all *64.cPeter S. Mazinger2006-02-261-14/+1
|
* add some copyright/license infoMike Frysinger2006-02-041-0/+6
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-2/+4
| | | | missing headers, other jump relocs removed
* Build x64 versions only if LFS is enabledPeter S. Mazinger2005-12-161-4/+1
|
* Hidden readdir*Peter S. Mazinger2005-12-131-2/+3
|
* macro out the thread funcs in libc if threading is disabledMike Frysinger2005-12-061-4/+0
|
* Fix a long-standing bug with pthreads. A couple of linuxthreads filesManuel Novoa III2003-12-271-2/+2
| | | | | | | | | | | | | | | | were including libc-lock.h which had a bunch of weak pragmas. Also, uClibc supplied a number of no-op weak thread functions even though many weren't needed. This combined result was that sometimes the functional versions of thread functions in pthread would not override the weaks in libc. While fixing this, I also prepended double-underscore to all necessary weak thread funcs in uClibc, and removed all unused weaks. I did a test build, but haven't tested this since these changes are a backport from my working tree. I did test the changes there and no longer need to explicitly add -lpthread in the perl build for perl to pass its thread self tests.
* Fix scandir64 to not free the wrong pieces of memory (which couldEric Andersen2003-01-281-3/+1
| | | | | | | | and did cause segfaults) by adjusting the working scandir.c to the the 64 thing. Fix up potential for mismatches between the libc and kernel dirent structures, which could also cause ugly problems. -Erik
* Ok, this commit is _huge_ and its gonna change the world. I'veEric Andersen2002-10-311-2/+2
| | | | | | | | | | | | | | | been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik
* Fixup totally broken locking code... No storage for the mutex,Eric Andersen2002-05-301-4/+4
| | | | | wrong ifdef macro.. -Erik
* Oops. Stupid typo.Eric Andersen2002-05-111-1/+1
|
* Implement readdir_r. Audit for proper thread safety and locking.Eric Andersen2002-05-111-30/+25
| | | | -Erik
* Avoid defining __USE_FILE_OFFSET64, since we do _NOT_ wantEric Andersen2002-04-091-3/+5
| | | | | | interfaces silently renamed under us or very bad things may happen... -Erik
* Don't redefine stuffEric Andersen2002-02-261-3/+10
|
* Scrub up some lingering problems preventing readdir64 from workingEric Andersen2001-11-141-5/+4
| | | | | | and creating several *64 problems, particualrly when client apps used -D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64. All better now. -Erik
* In theory, this adds readdir64 and friends. Dunno if theyEric Andersen2001-10-171-0/+68
work yet or not.... -Erik