summaryrefslogtreecommitdiffstats
path: root/libpthread/linuxthreads.old
Commit message (Collapse)AuthorAgeFilesLines
...
* DOMULTI may be used for libc, the excluded files need work, ↵Peter S. Mazinger2006-02-151-5/+5
| | | | linuxthreads[_db] as well, don't try on slow box
* fix warning when building on non-mmu hostsMike Frysinger2006-02-041-0/+2
|
* typoPeter S. Mazinger2006-02-011-1/+1
|
* same in oldPeter S. Mazinger2006-02-011-1/+5
|
* Add IMA compilingPeter S. Mazinger2006-01-301-10/+18
|
* prototypes for threads tooPeter S. Mazinger2006-01-266-3/+25
|
* Get rid of missing prototype warningsPeter S. Mazinger2006-01-261-0/+2
|
* Modify the earlier changes, because libc-lock references __pthread_mutex*, ↵Peter S. Mazinger2006-01-254-30/+33
| | | | dont use hidden_strong_alias
* make use of the internals provided earlierPeter S. Mazinger2006-01-255-23/+28
|
* Keep only hidden __pthread_mutex_* used in libc, change pthread_mutex_* to ↵Peter S. Mazinger2006-01-251-17/+19
| | | | use internal version, provide pthread_mutexattr_* internal versions, remove unused __pthread_mutex_timedlock
* Remove unused prototypePeter S. Mazinger2006-01-251-2/+0
|
* user internal versions of waitpid/raise/nanosleepPeter S. Mazinger2006-01-252-1/+5
|
* provide internal nanosleep/waitpid/sigaction/raisePeter S. Mazinger2006-01-252-1/+9
|
* longjmp should use __libc_longjmp, use __typeof again now that it works ↵Peter S. Mazinger2006-01-251-3/+3
| | | | correctly
* s/IS_IN_linuxthreads/IS_IN_libpthread/Peter S. Mazinger2006-01-251-1/+1
|
* Get rid of a shadow warningPeter S. Mazinger2006-01-241-2/+2
|
* add noreturn for *longjmpPeter S. Mazinger2006-01-241-4/+4
|
* waitpid undefinedPeter S. Mazinger2006-01-241-0/+1
|
* use __typeof for all __libc_x prototypes, do not need __sigaction/__vforkPeter S. Mazinger2006-01-243-11/+8
|
* Don't use __getpid/__getpagesizePeter S. Mazinger2006-01-243-19/+11
|
* fork/vfork weak in libc, strong in libpthreadPeter S. Mazinger2006-01-241-5/+5
|
* Move threads header to proper locationPeter S. Mazinger2006-01-241-0/+58
|
* Use __typeof for __libc*longjmpPeter S. Mazinger2006-01-241-5/+2
|
* Remove unneeded _GNU_SOURCEPeter S. Mazinger2006-01-231-2/+1
|
* depend on ldsoMike Frysinger2006-01-231-1/+2
|
* typoPeter S. Mazinger2006-01-231-1/+1
|
* Make i386 build w/ -std=c99 (almost)Peter S. Mazinger2006-01-231-1/+1
|
* Add some attribute_noreturn, replace __attribute__ ((noreturn)) as wellPeter S. Mazinger2006-01-231-4/+4
|
* Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵Peter S. Mazinger2006-01-227-7/+0
| | | | is a useless attempt
* Remove HAVE_ELFPeter S. Mazinger2006-01-191-1/+1
|
* Add libc_pthread_init to libc.a as well, should correct bug reported to mlPeter S. Mazinger2006-01-171-0/+1
|
* make gcc4 happy w/ hidden_def/proto, correct some typosPeter S. Mazinger2006-01-151-5/+6
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-144-7/+9
| | | | missing headers, other jump relocs removed
* Get rid of hidden_defPeter S. Mazinger2006-01-091-18/+12
|
* psm says: fix your linuxthreads / linuxthreads.old typo stupid!Mike Frysinger2006-01-061-1/+1
|
* update libc lock functions to new pthread forwardingMike Frysinger2006-01-062-28/+90
|
* __uselocale is hiddenPeter S. Mazinger2006-01-041-1/+1
|
* Build also if XLOCALE is enabledPeter S. Mazinger2006-01-041-0/+5
|
* use internal versions of exit/memcpyPeter S. Mazinger2006-01-042-2/+2
|
* update pthread weak handling to the style glibc usesMike Frysinger2006-01-048-40/+421
|
* 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.