summaryrefslogtreecommitdiffstats
path: root/libc/pwd_grp/lckpwdf.c
Commit message (Collapse)AuthorAgeFilesLines
* clean up O_CLOEXEC handlingMike Frysinger2009-10-161-5/+3
| | | | | | | | Drop the "#ifndef O_CLOEXEC" cruft, enable O_CLOEXEC in most fcntl.h headers, and import __ASSUME_O_CLOEXEC from glibc. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* lckpwdf: remove a wrong comment and one write-only variableDenys Vlasenko2009-09-181-5/+1
| | | | | | | no code changes (verified with objdump) Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* CLOEXEC: use open(CLOEXEC) if exist; do not check fcntl(FD_CLOEXEC) failureDenys Vlasenko2009-09-181-22/+12
| | | | | | | | | | | | | text data bss dec hex filename - 370 0 0 370 172 libc/misc/dirent/opendir.o + 366 0 0 366 16e libc/misc/dirent/opendir.o - 375 4 0 379 17b libc/pwd_grp/lckpwdf.o + 356 4 0 360 168 libc/pwd_grp/lckpwdf.o - 248 0 0 248 f8 librt/shm.o + 209 0 0 209 d1 librt/shm.o Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* Synch with trunk @ 24242Carmelo Amoroso2008-12-031-45/+18
| | | | | Step 18: some more synch: hidden_proto, size reduction and signal handling changes.
* Synch with trunk @ 24165Carmelo Amoroso2008-11-271-8/+8
| | | | | Step 17: libc_hidden_proto removal (almost all). and other minor changes (inline keyword, extra character)
* Synch with trunk @ 24087Carmelo Amoroso2008-11-181-1/+1
| | | | Step 10: libc_hidden_removal
* BIG BIG commit: all left files merged from trunk [rev 22714]. Currenntly ↵Carmelo Amoroso2008-07-091-24/+16
| | | | 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>
* Fix Makefile.in and synch them with trunk. Signed-off-by: Carmelo Amoroso ↵Carmelo Amoroso2007-11-201-1/+2
| | | | <carmelo.amoroso@st.com>
* Merge from trunk."Steven J. Hill"2006-08-221-136/+148
|
* Merge from trunk."Steven J. Hill"2006-02-251-19/+27
|
* Big fricking merge from trunk."Steven J. Hill"2006-01-071-3/+3
|
* Finish merge from trunk, again, no really."Steven J. Hill"2005-12-101-1/+3
|
* Fix 'sigaction' for NPTL and other thread models."Steven J. Hill"2005-12-081-1/+0
|
* Big merge from trunk. Stop the madness!"Steven J. Hill"2005-12-061-7/+7
|
* Merge from trunk. More to come you betcha'."Steven J. Hill"2005-12-021-11/+11
|
* 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.
* Implement getgrgid_r and getgrnam_r. Rework group handling code to be fullyEric Andersen2003-10-101-113/+114
| | | | reentrant, since there was still a shared static value. indent stuff,
* Fix lockingEric Andersen2002-08-081-2/+24
| | | | -Erik
* Silence warnings, clean things up.Eric Andersen2002-06-121-114/+109
| | | | -Erik
* * Added /etc/shadow support (Config selectable)David McCullough2002-01-171-0/+163
* Moved some file paths from code into <paths.h>