about summary refs log tree commit diff
path: root/src/thread
Commit message (Expand)AuthorAgeFilesLines
* fix type error in pthread_create, introduced with pthread_getattr_npRich Felker2013-04-061-1/+1
* implement pthread_getattr_npRich Felker2013-03-312-2/+29
* remove __SYSCALL_SSLEN arch macro in favor of using public _NSIGRich Felker2013-03-264-9/+9
* fix stale locks left behind when pthread_create failsRich Felker2013-02-011-3/+6
* if pthread_create fails, it must not attempt mmap if there is no mappingRich Felker2013-02-011-1/+1
* pthread stack treatment overhaul for application-provided stacks, etc.Rich Felker2013-02-013-23/+33
* replace __wake function with macro that performs direct syscallRich Felker2013-02-011-9/+0
* fix some restrict-qualifier mismatches in newly added interfacesRich Felker2012-11-271-2/+2
* powerpc: handle syscall error in clone.rofl0r2012-11-191-25/+9
* fix powerpc asm not to store data in volatile space below stack pointerRich Felker2012-11-181-4/+4
* add stub versions of some missing optional pthread interfacesRich Felker2012-11-175-0/+30
* fix indention with spaces in powerpc asmRich Felker2012-11-141-8/+8
* Merge remote-tracking branch 'ppc-port/ppc-squashed'Rich Felker2012-11-144-0/+154
|\
| * PPC port cleaned up, static linking works well now.rofl0r2012-11-134-4/+147
| * import preliminary ppc work by rdp.Richard Pennington2012-11-131-0/+11
* | debloat src/thread tree but putting lots of junk in one fileRich Felker2012-11-1116-108/+93
* | add support for thread scheduling (POSIX TPS option)Rich Felker2012-11-1112-4/+106
* | clean up sloppy nested inclusion from pthread_impl.hRich Felker2012-11-0812-8/+13
|/
* fix order of syscall args for microblaze clone syscallRich Felker2012-10-191-3/+2
* ensure microblaze __set_thread_area returns successRich Felker2012-10-181-1/+2
* fix microblaze asm relocations for shared libcRich Felker2012-10-171-1/+1
* add support for TLS variant I, presently needed for arm and mipsRich Felker2012-10-153-2/+6
* fix overlap of thread stacks with thread tls segmentsRich Felker2012-10-141-2/+1
* clean up and refactor program initializationRich Felker2012-10-071-1/+1
* support for TLS in dynamic-loaded (dlopen) modulesRich Felker2012-10-053-23/+28
* beginnings of full TLS support in shared librariesRich Felker2012-10-042-0/+8
* TLS (GNU/C11 thread-local storage) support for static-linked programsRich Felker2012-10-042-14/+33
* protect sem_open against cancellationRich Felker2012-09-301-13/+19
* overhaul sem_openRich Felker2012-09-301-105/+96
* sem_open should make process-shared semaphoresRich Felker2012-09-291-1/+1
* use O_CLOEXEC to open semaphore files in sem_openRich Felker2012-09-291-2/+2
* fix some indention-with-spaces that crept inRich Felker2012-09-291-4/+4
* microblaze portRich Felker2012-09-294-0/+65
* fix arm clone syscall bug (no effect unless app uses clone)Rich Felker2012-09-271-2/+1
* update mips cancellation-point syscall asm with 7-arg and r25 fixesRich Felker2012-09-151-2/+5
* fix mips syscall_cp_asm code (saved register usage)Rich Felker2012-09-091-2/+2
* further use of _Noreturn, for non-plain-C functionsRich Felker2012-09-061-2/+2
* use restrict everywhere it's required by c99 and/or posix 2008Rich Felker2012-09-0626-26/+26
* fix extremely rare but dangerous race condition in robust mutexesRich Felker2012-08-173-20/+33
* fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker2012-08-094-7/+12
* retry on cas failures in sem_trywaitRich Felker2012-07-241-2/+2
* avoid blx instruction which does not exist on armv4t or armv4Rich Felker2012-07-141-1/+2
* fix several locks that weren't updated right for new futex-based __lockRich Felker2012-07-123-7/+7
* fix pthread_kill unlockingRich Felker2012-07-121-1/+1
* fix potential race condition in detached threadsRich Felker2012-07-112-4/+10
* mips clone: don't free stack space used to copy argRich Felker2012-07-111-1/+0
* fix mips clone() on real linux kernelRich Felker2012-07-111-4/+7
* fix clone() on mips (args were in wrong order)Rich Felker2012-07-111-3/+2
* first attempt at making threads work on mipsRich Felker2012-07-113-0/+67
* generic c version of __set_thread_area for archs where it worksRich Felker2012-07-111-1/+5