summaryrefslogtreecommitdiffstats
path: root/libpthread/linuxthreads.old
Commit message (Collapse)AuthorAgeFilesLines
* Add proper guard, so that we don't see the internal header in userspacePeter S. Mazinger2006-01-031-1/+1
|
* Joseph S. Myers writes:Mike Frysinger2006-01-031-1/+1
| | | | | | | | | | | This patch fixes the build of libpthread for MIPS. The definition of _test_and_set uses __THROW after the prototype: but attributes are only accepted after the prototype in function declarations which aren't definitions, not between the prototype and the function body in a definition. The proper macro to use here is __NTH (placing the attribute before the prototype). glibc does the same thing, so this is also a sync up with glibc
* kill off some signedness/unused warningsMike Frysinger2005-12-291-3/+3
|
* sync whitespace with glibcMike Frysinger2005-12-291-15/+14
|
* touchup code a bit to prep for new weak systemMike Frysinger2005-12-291-8/+9
|
* kill off unused warningMike Frysinger2005-12-271-1/+1
|
* typecast away a signed/unsigned warningMike Frysinger2005-12-271-1/+1
|
* cut pointless filesMike Frysinger2005-12-275-1912/+0
|
* kill off minor unused warningsMike Frysinger2005-12-278-16/+16
|
* Jie Zhang writes:Mike Frysinger2005-12-221-0/+8
| | | | | | | | I think the loop was written for MMU case. When there is MMU, mmap () is used to allocate the stack. If one segment is already mapped, we should continue to see if we can use the next one. However, for NOMMU, malloc () is used. It's waste of CPU cycles to continue to try if it fails. Here is a new patch, which makes this change only for NOMMU.
* Remove all trailing ; after *_alias and change 2 to use weak_alias instead ↵Peter S. Mazinger2005-12-161-2/+2
| | | | of __attribute__ ...
* This header blocked the use of __THROW in libc-internal.hPeter S. Mazinger2005-12-131-0/+2
|
* hide some internal pthread functionsMike Frysinger2005-12-061-0/+6
|
* use the internal pthread_mutex_init()Mike Frysinger2005-12-061-1/+1
|
* Hide mostly used functionsPeter S. Mazinger2005-12-011-1/+1
|
* touchup whitespaceMike Frysinger2005-11-301-4/+3
|
* Depedencies corrected (less make oldconfig/headers), rerunning make remakes ↵Peter S. Mazinger2005-11-221-7/+13
| | | | only headers
* rework depends and stripping so that libraries arent rebuilt all the time in ↵Mike Frysinger2005-11-221-2/+4
| | | | a loop
* Remove TOPDIRPeter S. Mazinger2005-11-211-3/+1
|
* Enable __THROW,_NTH,REDIRECT_NTHPeter S. Mazinger2005-11-182-5/+4
|
* Include all lib*/Makefile.in in top_srcdir/Makefile.in, allows adding ↵Peter S. Mazinger2005-11-172-37/+78
| | | | foreign objects to a lib
* Use -z relro/-z now on all libs, add some new variables needed later, move ↵Peter S. Mazinger2005-11-171-1/+1
| | | | common ldso/libdl parts to Rules.mak, remove strip from all TARGET_ARCH
* rename current stable linuxthreads to linuxthreads.old to prepare for import ↵Mike Frysinger2005-11-1564-0/+14160
of latest glibc version