summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/common/ftruncate64.c
Commit message (Collapse)AuthorAgeFilesLines
* trim Experimentally off and uncommented hiddenAustin Foxley2009-09-181-2/+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>
* drop missing {INLINE,INTERNAL}_SYSCALL fallback logicMike Frysinger2009-07-091-12/+0
| | | | | | | | Ports missing INLINE_SYSCALL() support need to get fixed, so drop the cruft keeping them alive since it no longer works with the unification. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* Synch with trunk @ 24165Carmelo Amoroso2008-11-271-5/+5
| | | | | Step 17: libc_hidden_proto removal (almost all). and other minor changes (inline keyword, extra character)
* Synch with trunk at rev 22997.Carmelo Amoroso2008-07-311-3/+3
| | | | | | | Basically trailing whitespaces removal, fix non standard keywords asm -> __asm__ inline -> __inline__ and some minor changes on trunk. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Merge from trunk."Steven J. Hill"2006-02-281-31/+35
|
* Fix ftruncate64 and truncate64 for powerpc and mipsEric Andersen2004-07-211-3/+16
| | | | -Erik
* If __NR_ftruncate64 isn't defined, do the best we can.Manuel Novoa III2003-11-171-5/+19
|
* Cleanup a few structural wierdnessesEric Andersen2002-11-151-5/+7
|
* Fix it for real this time.Eric Andersen2002-11-151-4/+7
|
* Doh! I screwed that one all up. Lets try that again...Eric Andersen2002-11-151-4/+8
| | | | -Erik
* Minor cleanupEric Andersen2002-11-141-4/+5
| | | | -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
* Rework syscall handling. Rewrite syscall handlers for x86 and ARM.Eric Andersen2002-07-221-5/+8
| | | | | | Prepare to kill the UNIFIED_SYSCALL option and instead have it be a per arch thing that is either enabled or not for that arch. -Erik
* Some minor updates per discussion with Miles BaderEric Andersen2002-04-101-4/+6
| | | | -Erik
* Remove from syscalls.c, leave just ftruncate64.c and truncate64.cEric Andersen2002-04-091-2/+2
| | | | | which have implementations that works... -Erik
* Create a much more careful ftruncate64 implementation, that shouldEric Andersen2002-04-091-0/+39
address all the concern Miles had with the earlier versions... -Erik