summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* fix from psm: DODEBUG_PT is only meaningful for LINUXTHREADS_OLD, add: ↵Mike Frysinger2006-08-251-1/+1
| | | | depends on LINUXTHREADS_OLD
* fix from psm: makes use of the malloc debug option in malloc-standard as wellMike Frysinger2006-08-254-13/+8
|
* Bump SHMLBA up to a sensible size for dcache alias avoidance to coincide withPaul Mundt2006-08-252-0/+212
| | | | | | | the kernel's get_unmapped_area() behaviour. Ideally this should be more tightly packed based off of the L1 dcache shape, once we're able to handle it through the auxiliary vector.
* merge with psm: sync with common socket headersMike Frysinger2006-08-255-1003/+7
|
* merge fixes from upstream (rev 1.10 -> 1.13)Mike Frysinger2006-08-241-2/+5
|
* - only link asm-generic if it exists.Bernhard Reutner-Fischer2006-08-241-3/+3
| | | | PS: test for existence on Slowaris was disfunctional, last time i looked. Shouldn't matter much here, though..
* fix from psm: enable readahead prototypeMike Frysinger2006-08-2416-16/+48
|
* only pull in errno.h when not assemblerMike Frysinger2006-08-241-2/+2
|
* implement readahead()Mike Frysinger2006-08-241-0/+52
|
* fixups from psm for ASSEMBLER handlingMike Frysinger2006-08-241-20/+21
|
* use the common huge_val.h version nowMike Frysinger2006-08-243-254/+0
|
* update to new huge_val headersMike Frysinger2006-08-241-57/+10
|
* fix from psm: disable unsupported featuresMike Frysinger2006-08-241-0/+2
|
* fix from psm: just use common resource.hMike Frysinger2006-08-248-1672/+0
|
* just be like every other uclibc portMike Frysinger2006-08-241-2/+2
|
* sync with glibcMike Frysinger2006-08-241-1/+1
|
* psm says: use $(top_builddir) instead of $(top_srcdir) when accessing ↵Mike Frysinger2006-08-241-1/+3
| | | | generated header files
* add back in HIDDEN_JUMPTARGET() as pointed out by psmMike Frysinger2006-08-241-1/+1
|
* fix by Bernhard Fischer to move local prototypes to a header to keep things saneMike Frysinger2006-08-244-20/+29
|
* fix from psm: only define __ASSUME_NETLINK_SUPPORT if not definedMike Frysinger2006-08-241-0/+2
|
* sync with upstream via psmMike Frysinger2006-08-242-75/+100
|
* s/ifdef ASM/ifndef ASM/ as point out by psmMike Frysinger2006-08-241-1/+1
|
* sync with upstream via psmMike Frysinger2006-08-2422-293/+567
|
* sync with upstream via psmMike Frysinger2006-08-242-5/+9
|
* psm updates: add __libc symbols for signal cancellationMike Frysinger2006-08-2310-23/+51
|
* sync with upstream via psmMike Frysinger2006-08-231-13/+20
|
* sync with psm: update errno handling to be the same on all archesMike Frysinger2006-08-2321-113/+160
|
* only define offsetof() if it isnt already definedMike Frysinger2006-08-231-1/+3
|
* merge from psm: hide more brkMike Frysinger2006-08-231-3/+2
|
* sync with upstream via psmMike Frysinger2006-08-231-3/+7
|
* sync with upstream via psmMike Frysinger2006-08-2361-520/+1519
|
* import new headers from upstream via psmMike Frysinger2006-08-2310-0/+867
|
* fix from psm: remove unused defines/includesMike Frysinger2006-08-237-27/+0
|
* fixes from psm: use new clone definitionMike Frysinger2006-08-231-1/+2
|
* fixes from psm: use __asm__/__volatile__Mike Frysinger2006-08-232-22/+22
|
* fix from psm: remove unused defines/includesMike Frysinger2006-08-231-4/+0
|
* sync with upstream glibcMike Frysinger2006-08-231-20/+56
|
* fixes from psm: hide internal brk symbolsMike Frysinger2006-08-2326-92/+55
|
* fixes from psm: disable unsupported __fpu_control and sync with upstreamMike Frysinger2006-08-2311-39/+99
|
* sync with psm: add copyright noticeMike Frysinger2006-08-231-0/+5
|
* pull from upstreamMike Frysinger2006-08-233-4/+13
|
* fixes from psm so we can pull in uClibc headers properlyMike Frysinger2006-08-233-3/+15
|
* fix from psm: add UCLIBC_ prefix to HAS_SHADOW optionMike Frysinger2006-08-236-6/+6
|
* Bogus page size comment for frv PAGE_SHIFT.Paul Mundt2006-08-231-1/+1
|
* Jie Zhang writes: Fix struct kernel_stat64 for Blackfin.Mike Frysinger2006-08-231-6/+4
|
* fix upstream blackfin page.h rather than duplicating effort hereMike Frysinger2006-08-231-29/+0
|
* bits/profil-counter.h and bits/atomicity.h are leftovers from the old gprofEric Andersen2006-08-2120-1403/+0
| | | | | based profiling I nuked ages ago since tools like oprofile are non invasive and work so much better.
* merge fix from blackfin cvs:Mike Frysinger2006-08-052-2/+2
| | | | bernds writes: Use __alignof__ instead of sizeof to get alignments. Eliminates some warnings about misalignments when malloc debugging is enabled.
* fix h_alias handling in gethostbyaddr_r() just like in gethostbyname_r()Mike Frysinger2006-07-311-0/+11
| | | | | | | | | otherwise we get messed up alias memory and this simple test case will segfault: python -c 'import socket; print socket.gethostbyaddr("80.68.88.204")[2];' see bug report in blackfin tracker for more info: http://blackfin.uclinux.org/tracker/index.php?func=detail&aid=1503&group_id=17&atid=141
* psm writes:Eric Andersen2006-07-132-36/+1
| | | | | | | | forgotten to mention to remove glob-hooks.c and the reference in Makefile.in (the prototypes for the 3 hooks were already removed by the patch applied here) Peter