Age | Commit message (Expand) | Author |
2012-08-22 | We want to check that the dynamic linker is available at run-time, so | Matthew Dempsky |
2012-08-22 | Test for __PIC__ instead of PIC in preparation for eliminating -DPIC | Matthew Dempsky |
2012-08-15 | Oops, on a.out architectures __cerror() is called _cerror(). Fix | Matthew Dempsky |
2012-08-13 | Add explicit references from rthread.o to all of the weak symbol | Matthew Dempsky |
2012-06-21 | __tfork() needs to set the stack address of the new thread in the kernel, | Philip Guenthe |
2012-04-10 | pthread_setcanceltype() shouldn't be a cancelation point | Philip Guenthe |
2012-03-22 | Remove pthread_suspend* and related functions. This is part of the | Kurt Miller |
2012-03-20 | Permit recursive locking in _rthread_dl_lock(), as an so's destructor | Philip Guenthe |
2012-03-14 | Force sched_yield() to be resolved before calling dlctl(DL_SET*LCK) with | Philip Guenthe |
2012-03-03 | Add sem_timewait() and fix sem_wait()'s handling of signals, so | Philip Guenthe |
2012-03-02 | for readability, put the label on it's own line. | Federico G. Schwindt |
2012-02-24 | sched_yield() is the standard name while pthread_yield() is the | Philip Guenthe |
2012-02-19 | Use a form of designated initializer that works with gcc2 | Philip Guenthe |
2012-02-18 | Fix previous commit: _rthread_init() was static. | Philip Guenthe |
2012-02-18 | Fix the handling of the stackaddr, stacksize, and guardsize attributes: | Philip Guenthe |
2012-02-16 | Set __isthreaded in pthread_create() instead of _rthread_init() such that it | Mark Kettenis |
2012-01-17 | Reimplement mutexes, condvars, and rwlocks to eliminate bugs, | Philip Guenthe |
2011-12-28 | pthread_self() may be much cheaper and never more expensive than getthrid() | Philip Guenthe |
2011-12-27 | On failure, pthread_kill() should return the errno, not -1 | Philip Guenthe |
2011-12-05 | Mark sigthr()'s sig argument as __unused | Philip Guenthe |
2011-12-05 | Implement cancelation for the basic syscall cancelation points, | Philip Guenthe |
2011-11-09 | Oh yeah, with TLS-lite we can get the thread handle without walking the | Philip Guenthe |
2011-11-06 | Move <machine/spinlock.h> into rthread.h; strip out unnecessary #includes | Philip Guenthe |
2011-10-17 | Use __tfork, __get_tcb, and __set_tcb to have a real TCB and per-thread | Philip Guenthe |
2009-11-27 | Convert thrsleep() to an absolute timeout with clockid to eliminate a | Philip Guenthe |
2009-11-27 | Change threxit() to take a pointer to a pid_t to zero out from the | Philip Guenthe |
2009-02-20 | Fix a race in the reaper discovered by Tobias Ulmer. kevents are identified ... | Ted Unangst |
2008-10-13 | use calloc() instead of malloc() and memset() | Kevin Lo |
2008-08-14 | Match libpthread's behavior and make pthread_join(NULL, whatever) fail | Philip Guenthe |
2008-08-14 | Fix 5771/library: in pthread_exit(), delay the call to _sem_post() that | Philip Guenthe |
2008-08-14 | If the initial thread calls pthread_exit(), don't overwrite its thread | Philip Guenthe |
2008-06-05 | - Add fork/vfork wrapper functions to reset state in the child process. | Kurt Miller |
2007-05-18 | Register the locking hooks with ld.so. | Artur Grabowski |
2006-01-06 | Initialize thread debug in _rthread_init. The debug verbosity | Marco S Hyman |
2006-01-06 | guess it's time to remove the init printf; sturm found a port that | Ted Unangst |
2006-01-05 | In pthread_join(), check if we create a deadlock trying to join | Otto Moerbeek |
2006-01-05 | move malloc lock to libc interface file | Ted Unangst |
2006-01-05 | add -Wstrict-prototypes -Wmissing-prototypes -Wsign-compare | Marco S Hyman |
2006-01-04 | Cleanup struct pthread and stack after thread exits. This version does | Otto Moerbeek |
2006-01-04 | allow threads to be created in a detached state | Marco S Hyman |
2006-01-01 | thread stack handling changes. Add guard zones and allow stack | Marco S Hyman |
2005-12-31 | Implement suspend/resume and creation of initially suspended threads. | Otto Moerbeek |
2005-12-30 | Remove exitinng thread from the list of threads. ok tedu@ | Otto Moerbeek |
2005-12-30 | use queue.h macros for thread house keeping; make some vars non-static | Otto Moerbeek |
2005-12-30 | __aligned__ isn't really necessary on the struct, an aligned member | Ted Unangst |
2005-12-30 | prototype all the thread syscalls in rthread.h for now. | Ted Unangst |
2005-12-29 | Put the existing _np functions into separate file; introduce | Otto Moerbeek |
2005-12-29 | implement pthread_main_np(); ok tedu@ | Otto Moerbeek |
2005-12-23 | for reasons that do not make any sense whatsoever, _rthread_alloc_stack | Ted Unangst |
2005-12-22 | more consistently use _rthread prefix for all not meant to be exported | Ted Unangst |