summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/bits/uClibc_pthread.h
AgeCommit message (Collapse)Author
2006-12-08seems this is the newfangled way to tell folks this stuffEric Andersen
is really really and we mean it this time, for uClibc only
2006-12-08this stuff is for uClibc internal use onlyEric Andersen
2006-12-08finish the pthread locking cleanups. This should get things compiling againEric Andersen
though I still need to silence the warnings about _pthread_cleanup_push_defer
2006-02-16Undo earlier change and sync new linuxthreads' guard w/ oldPeter S. Mazinger
2006-02-16Guard __pthread_mutex_* to be used exclusively within uClibc, do we need ↵Peter S. Mazinger
this header at all installed?
2006-01-05remove duplicate ;Mike Frysinger
2006-01-04now we can safely declare these hiddenMike Frysinger
2006-01-03Remove textrelPeter S. Mazinger
2005-12-29hide the internal libc pthread_mutex funcsMike Frysinger
2005-11-09booooring license updatesMike Frysinger
2003-12-27Fix a long-standing bug with pthreads. A couple of linuxthreads filesManuel Novoa III
were including libc-lock.h which had a bunch of weak pragmas. Also, uClibc supplied a number of no-op weak thread functions even though many weren't needed. This combined result was that sometimes the functional versions of thread functions in pthread would not override the weaks in libc. While fixing this, I also prepended double-underscore to all necessary weak thread funcs in uClibc, and removed all unused weaks. I did a test build, but haven't tested this since these changes are a backport from my working tree. I did test the changes there and no longer need to explicitly add -lpthread in the perl build for perl to pass its thread self tests.