summaryrefslogtreecommitdiff
path: root/src/thread
AgeCommit message (Expand)AuthorLines
2013-07-31in pthread_getattr_np, use mremap rather than madvise to measure stackRich Felker-1/+2
2013-07-22make pthread attribute types structs, even when they just have one fieldRich Felker-22/+22
2013-06-26fix syscall argument bug in pthread_getschedparamRich Felker-1/+1
2013-06-26fix temp file leak in sem_open on successful creation of new semaphoreRich Felker-2/+2
2013-06-26fix bug whereby sem_open leaked its own internal slots on failureRich Felker-3/+6
2013-06-26in sem_open, don't leak vm mapping if fstat failsRich Felker-2/+2
2013-06-26fix failure of pthread_setschedparam to pass correct param to kernelRich Felker-1/+1
2013-06-08support cputime clocks for processes/threads other than selfRich Felker-1/+2
2013-06-03ensure that thread dtv pointer is never null to optimize __tls_get_addrRich Felker-0/+2
2013-04-26transition to using functions for internal signal blocking/restoringRich Felker-8/+5
2013-04-26prevent code from running under a thread id which already gave ESRCHRich Felker-1/+7
2013-04-26synccall signal handler need not handle dead threads anymoreRich Felker-9/+0
2013-04-26fix clobbering of signal mask when creating thread with sched attributesRich Felker-1/+1
2013-04-26make last thread's pthread_exit give exit(0) a consistent stateRich Felker-3/+13
2013-04-26use atomic decrement rather than cas in pthread_exit thread countRich Felker-4/+1
2013-04-26add comments on some of the pthread_exit logicRich Felker-2/+15
2013-04-26always block signals in pthread_exit before decrementing thread countRich Felker-2/+2
2013-04-06fix type error in pthread_create, introduced with pthread_getattr_npRich Felker-1/+1
2013-03-31implement pthread_getattr_npRich Felker-2/+29
2013-03-26remove __SYSCALL_SSLEN arch macro in favor of using public _NSIGRich Felker-9/+9
2013-02-01fix stale locks left behind when pthread_create failsRich Felker-3/+6
2013-02-01if pthread_create fails, it must not attempt mmap if there is no mappingRich Felker-1/+1
2013-02-01pthread stack treatment overhaul for application-provided stacks, etc.Rich Felker-23/+33
2013-02-01replace __wake function with macro that performs direct syscallRich Felker-9/+0
2012-11-27fix some restrict-qualifier mismatches in newly added interfacesRich Felker-2/+2
2012-11-19powerpc: handle syscall error in clone.rofl0r-25/+9
2012-11-18fix powerpc asm not to store data in volatile space below stack pointerRich Felker-4/+4
2012-11-17add stub versions of some missing optional pthread interfacesRich Felker-0/+30
2012-11-14fix indention with spaces in powerpc asmRich Felker-8/+8
2012-11-14Merge remote-tracking branch 'ppc-port/ppc-squashed'Rich Felker-0/+154
2012-11-13PPC port cleaned up, static linking works well now.rofl0r-4/+147
2012-11-13import preliminary ppc work by rdp.Richard Pennington-0/+11
2012-11-11debloat src/thread tree but putting lots of junk in one fileRich Felker-108/+93
2012-11-11add support for thread scheduling (POSIX TPS option)Rich Felker-4/+106
2012-11-08clean up sloppy nested inclusion from pthread_impl.hRich Felker-8/+13
2012-10-19fix order of syscall args for microblaze clone syscallRich Felker-3/+2
2012-10-18ensure microblaze __set_thread_area returns successRich Felker-1/+2
2012-10-17fix microblaze asm relocations for shared libcRich Felker-1/+1
2012-10-15add support for TLS variant I, presently needed for arm and mipsRich Felker-2/+6
2012-10-14fix overlap of thread stacks with thread tls segmentsRich Felker-2/+1
2012-10-07clean up and refactor program initializationRich Felker-1/+1
2012-10-05support for TLS in dynamic-loaded (dlopen) modulesRich Felker-23/+28
2012-10-04beginnings of full TLS support in shared librariesRich Felker-0/+8
2012-10-04TLS (GNU/C11 thread-local storage) support for static-linked programsRich Felker-14/+33
2012-09-30protect sem_open against cancellationRich Felker-13/+19
2012-09-30overhaul sem_openRich Felker-105/+96
2012-09-29sem_open should make process-shared semaphoresRich Felker-1/+1
2012-09-29use O_CLOEXEC to open semaphore files in sem_openRich Felker-2/+2
2012-09-29fix some indention-with-spaces that crept inRich Felker-4/+4
2012-09-29microblaze portRich Felker-0/+65