summaryrefslogtreecommitdiff
path: root/libc/sysdeps
AgeCommit message (Collapse)Author
2006-01-03Remove textrelPeter S. Mazinger
2006-01-02Remove fpu_control.h handling as wellPeter S. Mazinger
2006-01-02fpu_control.h is handled generally in topdir/Makefile.in, remove rule for itPeter S. Mazinger
2006-01-01previous st_dev change from unsigned long (4bytes) to __dev_t (8bytes) ↵Mike Frysinger
needed to shrink the pads as well to maintain ABI compat
2005-12-30update to new build systemMike Frysinger
2005-12-30Bug 616, Thomas Chou: update crt to new 0.9.28 uClibc styleMike Frysinger
2005-12-30use errno.h not sys/errno.h as pointed out by sjhillMike Frysinger
2005-12-29hide the internal libc pthread_mutex funcsMike Frysinger
2005-12-29pointless whitespace touchupsMike Frysinger
2005-12-28make sure we handle the (malloc(0)==NULL) case as Aubrey points out via the ↵Mike Frysinger
e-mail list
2005-12-28include grp.h just for funMike Frysinger
2005-12-27tweak prototypes to match the exported versionsMike Frysinger
2005-12-27Aubrey writes:Mike Frysinger
When I mounted nfs on my target, the kernel crashed. And I found it was caused by stack overflow. When I digged into it. And I found not only "setgroups.c" but "getgroups.c" have the matrix (__kernel_gid_t kernel_groups[n]) on the stack which can be very large because "n" can be assigned to NGROUPS_MAX. And, NGROUPS_MAX is defined in the file "./linux-2.6.x/include/linux/limits.h" #define NGROUPS_MAX 65536 /* supplemental group IDs are available */ I also changed it to do malloc.
2005-12-16Remove all trailing ; after *_alias and change 2 to use weak_alias instead ↵Peter S. Mazinger
of __attribute__ ...
2005-12-16TypoPeter S. Mazinger
2005-12-16Adapt some missed prototypesPeter S. Mazinger
2005-12-16Better guards within _LIBC, cleanup, typosPeter S. Mazinger
2005-12-16Convert all the rest, remove isxupper/isxlower, if someone objects, I'll add ↵Peter S. Mazinger
it back
2005-12-16Convert some usersPeter S. Mazinger
2005-12-16Disable some unused stuff, better guard for libcPeter S. Mazinger
2005-12-16Some undefs to be pedanticPeter S. Mazinger
2005-12-16Make clone use internal _exitPeter S. Mazinger
2005-12-15Hide exit/_exitPeter S. Mazinger
2005-12-15Hide fork and vfork, use the newly introduced *aliasPeter S. Mazinger
2005-12-15Fix static apps on linux 2.6. Linux clobbers r7 in 2.6, soJoakim Tjernlund
use r3 instead to pass _dl_fini.
2005-12-14Do hidden brk, hide _brk as well for some archs, convert users of brkPeter S. Mazinger
2005-12-14Fixup byte order handling. Not all architectures define __BIG_ENDIAN__ so i.e.Eric Andersen
on big endian mips the code is compiled as little-endian and the wrong half of the 64-bit point value is examined to check for NaN, etc. This bug also broke fpclassify(), isfinite(), isnormal(), isinf(), finite(), and signbit().
2005-12-13Convert all users of earlier hiddensPeter S. Mazinger
2005-12-13Hidden lseek[64], disabled llseek and _llseek for now, not in any headersPeter S. Mazinger
2005-12-13Do hidden fcntl*Peter S. Mazinger
2005-12-13Convert internal users of chmod/*stat*, minimize change for __strsepPeter S. Mazinger
2005-12-13Hide chmod, lockf*Peter S. Mazinger
2005-12-13Do hidden sbrkPeter S. Mazinger
2005-12-13Sync w/ glibcPeter S. Mazinger
2005-12-11Make sure we are really within uClibc only, these bits should move from the ↵Peter S. Mazinger
visible header
2005-12-10Merge from NPTL branch."Steven J. Hill"
2005-12-10Merge from NPTL branch. Bring in the remaining changes for sigaction."Steven J. Hill"
2005-12-10clean up warningsMike Frysinger
2005-12-10Do hidden __*stat*Peter S. Mazinger
2005-12-10Do hidden pipe, please check the change in mips (.end __pipe?)Peter S. Mazinger
2005-12-09s/strong/weak/, sorry sjhill, have overseen your changePeter S. Mazinger
2005-12-09hide __xstatX_convPeter S. Mazinger
2005-12-09Implement hidden poll, switch user to hidden *printf/*scanf/pollPeter S. Mazinger
2005-12-09internal sigpause, do we really default to BSD signals?Peter S. Mazinger
2005-12-09sig* hidden versions, make __rt_sig* static inlinePeter S. Mazinger
2005-12-08__ptr_t = void *, move hidden firstPeter S. Mazinger
2005-12-08typo, thx vapierPeter S. Mazinger
2005-12-08mmap/mremap/socket/rewind gonePeter S. Mazinger
2005-12-08Try to mimic glibc sigaction, sjhill, could you please test w/ this version?Peter S. Mazinger
2005-12-08Use hidden_weak_aliasPeter S. Mazinger