Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-05-31 | Bernd Schmidt writes: make sure custom stacks work properly for no-mmu | Mike Frysinger | |
2006-11-09 | backport from upstream: | Mike Frysinger | |
2001-04-10 Ulrich Drepper <drepper@redhat.com> * join.c (pthread_exit): Move code to new function __pthread_do_exit which takes an extra parameter with the current frame pointer. Call new function with CURRENT_STACK_FRAME. (__pthread_do_exit): New function. Call __pthread_perform_cleanup with the new parameter. (pthread_join): Call __pthread_do_exit instead of pthread_exit. * cancel.c (__pthread_perform_cleanup): Takes extra parameter. Use this parameter as the initial value the cleanup handler records are compared against. No active cleanup handler record must have an address lower than the previous one and the initial record must be above (below on PA) the frame address passed in. (pthread_setcancelstate): Call __pthread_do_exit instead of pthread_exit. (pthread_setcanceltype): Likewise. (pthread_testcancel): Likewise. (_pthread_cleanup_pop_restore): Likewise. * condvar.c (pthread_cond_wait): Likewise. (pthread_cond_timedwait_relative): Likewise. * manager.c (pthread_start_thread): Likewise. * oldsemaphore.c (__old_sem_wait): Likewise. * pthread.c (pthread_handle_sigcancel): Likewise. * semaphore.c (__new_sem_wait): Likewise. (sem_timedwait): Likewise. * ptlongjmp.c (pthread_cleanup_upto): Also use current stack frame to limit the cleanup handlers which get run. * internals.h: Add prototype for __pthread_do_exit. Adjust prototype for __pthread_perform_cleanup. | |||
2006-11-03 | remove duplicated/unused ASSERT code | Mike Frysinger | |
2006-02-27 | import ia64 linuxthreads files | Mike Frysinger | |
2006-02-18 | tweak the idea between having a MMU and actually using it | Mike Frysinger | |
2006-01-25 | user internal versions of waitpid/raise/nanosleep | Peter S. Mazinger | |
2006-01-24 | Don't use __getpid/__getpagesize | Peter S. Mazinger | |
2006-01-23 | Add some attribute_noreturn, replace __attribute__ ((noreturn)) as well | Peter S. Mazinger | |
2006-01-22 | Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵ | Peter S. Mazinger | |
is a useless attempt | |||
2006-01-14 | hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵ | Peter S. Mazinger | |
missing headers, other jump relocs removed | |||
2005-12-27 | typecast away a signed/unsigned warning | Mike Frysinger | |
2005-12-27 | kill off minor unused warnings | Mike Frysinger | |
2005-12-22 | Jie Zhang writes: | Mike Frysinger | |
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. | |||
2005-11-15 | rename current stable linuxthreads to linuxthreads.old to prepare for import ↵ | Mike Frysinger | |
of latest glibc version |