about summary refs log tree commit diff
path: root/src/thread
Commit message (Expand)AuthorAgeFilesLines
* 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
* add pthread_attr_setstack interface (and get)Rich Felker2012-06-093-9/+37
* remove implementation-reserved bits when saving signal maskRich Felker2012-06-021-1/+11
* remove no-longer-needed unblocking of signals in pthread_createRich Felker2012-06-021-1/+0
* ensure pthread-internal signals are unblocked before threads are usedRich Felker2012-05-251-0/+1
* remove leftover cp_sp cruft from cancellation code, fix small bugRich Felker2012-05-251-3/+1
* fix bad opcode in arm syscall_cp_asmRich Felker2012-05-231-1/+1
* fix issue with longjmp out of signal handlers and cancellationRich Felker2012-05-234-52/+35