summaryrefslogtreecommitdiffstats
path: root/libpthread/nptl/sysdeps/pthread
Commit message (Collapse)AuthorAgeFilesLines
* whitespace fixesAustin Foxley2009-10-171-2/+2
| | | | Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* Revert part of ecd7069ac6Austin Foxley2009-09-251-0/+3
| | | | | | This seemingly harmless warning fix causes mutex use in libc to crash... Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* spent this morning beating i386 nptl into shapeAustin Foxley2009-09-221-1/+7
| | | | | | Got it compiling thus far, still working on getting it to run Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* nptl/: fix .dep files not working for libpthread.aAustin Foxley2009-09-221-0/+4
| | | | | | | the variable libpthread-a-y was holding %.o instead of %.os, so the .dep make rules were rebuilding the whole lib every time Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* warning fixesAustin Foxley2009-09-211-3/+0
| | | | Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* Fix kernl-features.h include path.Carmelo Amoroso2008-12-113-3/+3
| | | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Signed-off-by: Khem Raj <raj.khem@gmail.com>Khem Raj2008-12-101-9/+12
| | | | Update pthread_mutex_t definition and initializations.
* Signed-off-by: Khem Raj <raj.khem@gmail.com>Khem Raj2008-12-091-1/+1
| | | | | | This patch makes mips nptl port compile again Replace remaining instances of asm by __asm__ and volatile by __volatile__ include bits/errno.h instead of obsolete bits/errno_values.h
* Rework nptl build system for cleaning headers and objectsCarmelo Amoroso2008-12-031-3/+3
| | | | | | | | | | | | | | | | | | | | | | to be compliant with all other Makefile. The output of the make clean (silent mode) will be as follows: CLEAN ld-uClibc CLEAN libdl <....> CLEAN nptl_pthread_generic CLEAN nptl_pthread CLEAN nptl_arch CLEAN nptl_linux CLEAN nptl_linux_arch CLEAN libthread_db <....> CLEAN nptl_headers CLEAN nptl_arch_headers CLEAN nptl_linux_headers CLEAN nptl_db_headers Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Signed-off-by: Khem Raj <raj.khem@gmail.com>Khem Raj2008-07-112-11/+11
| | | | | | | | | | | | Hush compiler for extern inline warnings by using __extern_inline macro, this also makes gcc 4.3 happy. warning: C99 inline functions are not supported; using GNU89 warning: to disable this warning use -fgnu89-inline or the gnu Also fix this other warning. warning: missing braces around initializer warning: (near initialization for '_stdio_streams[0].__lock.__
* BIG BIG commit: all left files merged from trunk [rev 22714]. Currenntly ↵Carmelo Amoroso2008-07-091-9/+15
| | | | NPTL sh4 port build and work fine. All committed to allow Khem Ray working on a working branch to integrate the ARM nptl port. MIPS nptl port not tested but should still building and working fine. There are some other part non yet merged with trunk (misc/internals and some headers file that need some more work). Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Synch the whole build system. Also including recent fix on testsuite build ↵Carmelo Amoroso2008-07-091-3/+5
| | | | system
* Sync build machinery stuff from trunk. Some more fixed for mips nptl portKhem Raj2008-06-271-15/+9
|
* Remove extra / from directory nameCarmelo Amoroso2008-03-051-2/+2
| | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Synch nptl branch with SH port: as requested by sjhill for mips-ash4 mergeCarmelo Amoroso2007-11-196-9/+36
|
* Finally check in all the changes I made for NPTL library proper."Steven J. Hill"2006-08-217-11/+16
|
* Get rid of versioning and shared library compatibility code. We want to ↵"Steven J. Hill"2006-02-054-20/+4
| | | | start with as clean of a slate as possible. Whip me, beat me, make me shrink the code.
* Finish implementation of new signals for NPTL which are SIGCANCEL, SIGTIMER ↵"Steven J. Hill"2006-02-053-4/+4
| | | | and SIGSETXID.
* Remove remaining usage of the NPTL 'compat' compatiblity files directory. ↵"Steven J. Hill"2006-02-051-2/+0
| | | | Hooray.
* Rename files and create symbolic links for the thread library versions. Add ↵"Steven J. Hill"2006-02-056-2/+107
| | | | in new files from glibc and update makefile for all of the changes.
* Get rid of more glibc NPTL symbol and alias madness. Also disable usage of"Steven J. Hill"2006-01-141-0/+4
| | | | | | 'libc/sysdeps/linux/common/fork.c' when NPTL is being used. Finally, there are additional weak functions that need to be defined when using NPTL which have also been added.
* Merge from trunk."Steven J. Hill"2006-01-061-27/+22
|
* Fix build files so that CFLAGS and ASFLAGS do not bleed over into building ↵"Steven J. Hill"2005-12-171-23/+23
| | | | other code in the system. $!^%@!#$$
* Rename files do to build system limitations."Steven J. Hill"2005-12-173-0/+0
|
* Finish merge from trunk, again, no really."Steven J. Hill"2005-12-101-1/+1
|
* NPTL changes for signal handling, getpid, sleep, raise and a few things"Steven J. Hill"2005-12-081-19/+49
| | | | for new librt code. Also cleaned up the makefiles.
* Fix 'sigaction' for NPTL and other thread models."Steven J. Hill"2005-12-081-3/+2
|
* Remove unused source files and other extraneous glibc files. If you want to ↵"Steven J. Hill"2005-12-061-29/+0
| | | | understand the design, go read it in the glibc stuff. uClibc is all about size, including the tarball.
* Add in new make directives for NPTL."Steven J. Hill"2005-12-021-0/+68
|
* Final set of changes for NPTL and new build system. NPTL can now build with ↵"Steven J. Hill"2005-12-021-104/+9
| | | | the new build system.
* Changes for NPTL and new build system."Steven J. Hill"2005-12-022-111/+0
|
* Merge from trunk that gives us a valid NPTL dynamic loader and the start of ↵"Steven J. Hill"2005-11-291-137/+0
| | | | the new build system. I have probably another 300 and some files to go *sigh*.
* Sync with glibc reference tree and changes for uClibc thus far."Steven J. Hill"2005-11-165-46/+62
|
* Remove '__libc_fatal' function and usage of it. Remove and disable 'freeres' ↵"Steven J. Hill"2005-11-162-4/+8
| | | | code having to do with internal library memory usage and GDB. uClibc homey don't play that.
* Sync up with glibc NPTL and clean up unused source files."Steven J. Hill"2005-11-165-99/+163
|
* Fix up build system for NPTL. I admit it is much cleaner now, but I lost my ↵"Steven J. Hill"2005-10-041-11/+20
| | | | entire Saturday fixing this $!#$!#@$T! up.
* Rename 'fork.c' to be 'fork-nptl.c' because it ends up replacing the object ↵"Steven J. Hill"2005-08-174-211/+10
| | | | 'libc/sysdeps/linux/common/fork.o' and 'fork' then appears as undefined when applications are linked against uClibc.
* Finally, all of the makefiles that make the magic happen. These changes ↵"Steven J. Hill"2005-08-091-48/+54
| | | | allow for uClibc to build for NPTL support without breaking the old linuxthreads model. Let the testing begin.
* Compile cleanups for NPTL support."Steven J. Hill"2005-08-091-0/+5
|
* Big set of various patches to get the NPTL libraries to build and link."Steven J. Hill"2005-07-221-0/+19
|
* Add more files for NPTL support."Steven J. Hill"2005-06-121-0/+69
|
* Fix up include paths for compilation in uClibc."Steven J. Hill"2005-06-031-0/+4
|
* libpthread/nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c"Steven J. Hill"2005-05-2646-0/+5000
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/bits libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/fork.c libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32 libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/Versions libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/not-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64 libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/Makefile libpthread/nptl/sysdeps/unix/sysv/linux/configure libpthread/nptl/sysdeps/unix/sysv/linux/fork.c libpthread/nptl/sysdeps/unix/sysv/linux/pthread_kill.c libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_gettime.c libpthread/nptl/sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/alpha/fork.c libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_delete.c libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_create.c libpthread/nptl/sysdeps/unix/sysv/linux/alpha/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/alpha/lowlevellock.h libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_settime.c libpthread/nptl/sysdeps/unix/sysv/linux/alpha/aio_cancel.c libpthread/nptl/sysdeps/unix/sysv/linux/alpha/bits libpthread/nptl/sysdeps/unix/sysv/linux/alpha/bits/local_lim.h libpthread/nptl/sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h libpthread/nptl/sysdeps/unix/sysv/linux/alpha/bits/semaphore.h libpthread/nptl/sysdeps/unix/sysv/linux/alpha/clone.S libpthread/nptl/sysdeps/unix/sysv/linux/alpha/Versions libpthread/nptl/sysdeps/unix/sysv/linux/alpha/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/alpha/sem_post.c libpthread/nptl/sysdeps/unix/sysv/linux/alpha/pthread_once.c libpthread/nptl/sysdeps/unix/sysv/linux/alpha/createthread.c libpthread/nptl/sysdeps/unix/sysv/linux/alpha/Makefile libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_getoverr.c libpthread/nptl/sysdeps/unix/sysv/linux/smp.h libpthread/nptl/sysdeps/unix/sysv/linux/mq_notify.c libpthread/nptl/sysdeps/unix/sysv/linux/internaltypes.h libpthread/nptl/sysdeps/unix/sysv/linux/fork.h libpthread/nptl/sysdeps/unix/sysv/linux/sem_trywait.c libpthread/nptl/sysdeps/unix/sysv/linux/register-atfork.c libpthread/nptl/sysdeps/unix/sysv/linux/sleep.c libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c libpthread/nptl/sysdeps/unix/sysv/linux/getpid.c libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-32 libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-initfini.c libpthread/nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h libpthread/nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h libpthread/nptl/sysdeps/unix/sysv/linux/s390/fork.c libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-64/Versions libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-initfini.c libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c libpthread/nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c libpthread/nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h libpthread/nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c libpthread/nptl/sysdeps/unix/sysv/linux/s390/not-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c libpthread/nptl/sysdeps/unix/sysv/linux/pthread_yield.c libpthread/nptl/sysdeps/unix/sysv/linux/Implies libpthread/nptl/sysdeps/unix/sysv/linux/ia64/timer_gettime.c libpthread/nptl/sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/ia64/fork.c libpthread/nptl/sysdeps/unix/sysv/linux/ia64/timer_delete.c libpthread/nptl/sysdeps/unix/sysv/linux/ia64/clone2.S libpthread/nptl/sysdeps/unix/sysv/linux/ia64/timer_create.c libpthread/nptl/sysdeps/unix/sysv/linux/ia64/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/ia64/__ia64_longjmp.S libpthread/nptl/sysdeps/unix/sysv/linux/ia64/lowlevellock.h libpthread/nptl/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h libpthread/nptl/sysdeps/unix/sysv/linux/ia64/timer_settime.c libpthread/nptl/sysdeps/unix/sysv/linux/ia64/bits/local_lim.h libpthread/nptl/sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h libpthread/nptl/sysdeps/unix/sysv/linux/ia64/bits/semaphore.h libpthread/nptl/sysdeps/unix/sysv/linux/ia64/Versions libpthread/nptl/sysdeps/unix/sysv/linux/ia64/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/ia64/unwind-forcedunwind.c libpthread/nptl/sysdeps/unix/sysv/linux/ia64/pt-initfini.c libpthread/nptl/sysdeps/unix/sysv/linux/ia64/jmpbuf-unwind.h libpthread/nptl/sysdeps/unix/sysv/linux/ia64/unwind_longjmp.c libpthread/nptl/sysdeps/unix/sysv/linux/ia64/pthread_once.c libpthread/nptl/sysdeps/unix/sysv/linux/ia64/createthread.c libpthread/nptl/sysdeps/unix/sysv/linux/ia64/__sigstack_longjmp.c libpthread/nptl/sysdeps/unix/sysv/linux/ia64/Makefile libpthread/nptl/sysdeps/unix/sysv/linux/ia64/timer_getoverr.c libpthread/nptl/sysdeps/unix/sysv/linux/pt-fork.c libpthread/nptl/sysdeps/unix/sysv/linux/pt-raise.c libpthread/nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h libpthread/nptl/sysdeps/unix/sysv/linux/lowlevelbarrier.sym libpthread/nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h libpthread/nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h libpthread/nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h libpthread/nptl/sysdeps/unix/sysv/linux/sparc/fork.c libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Versions libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c libpthread/nptl/sysdeps/unix/sysv/linux/sparc/Versions libpthread/nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h libpthread/nptl/sysdeps/unix/sysv/linux/sparc/not-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32 libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/sparc/aio_cancel.c libpthread/nptl/sysdeps/unix/sysv/linux/mips/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/mips/clone.S libpthread/nptl/sysdeps/unix/sysv/linux/mips/bits libpthread/nptl/sysdeps/unix/sysv/linux/mips/bits/pthreadtypes.h libpthread/nptl/sysdeps/unix/sysv/linux/mips/bits/semaphore.h libpthread/nptl/sysdeps/unix/sysv/linux/mips/fork.c libpthread/nptl/sysdeps/unix/sysv/linux/mips/lowlevellock.h libpthread/nptl/sysdeps/unix/sysv/linux/mips/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/mips/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/mips/createthread.c libpthread/nptl/sysdeps/unix/sysv/linux/mips/pthread_once.c libpthread/nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c libpthread/nptl/sysdeps/unix/sysv/linux/jmp-unwind.c libpthread/nptl/sysdeps/unix/sysv/linux/aio_misc.h libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c libpthread/nptl/sysdeps/unix/sysv/linux/sigtimedwait.c libpthread/nptl/sysdeps/unix/sysv/linux/createthread.c libpthread/nptl/sysdeps/unix/sysv/linux/Makefile libpthread/nptl/sysdeps/unix/sysv/linux/timer_gettime.c libpthread/nptl/sysdeps/unix/sysv/linux/lowlevelrwlock.sym libpthread/nptl/sysdeps/unix/sysv/linux/lowlevellock.c libpthread/nptl/sysdeps/unix/sysv/linux/timer_delete.c libpthread/nptl/sysdeps/unix/sysv/linux/raise.c libpthread/nptl/sysdeps/unix/sysv/linux/allocrtsig.c libpthread/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c libpthread/nptl/sysdeps/unix/sysv/linux/timer_create.c libpthread/nptl/sysdeps/unix/sysv/linux/sigwait.c libpthread/nptl/sysdeps/unix/sysv/linux/sem_wait.c libpthread/nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/i386/fork.c libpthread/nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_init.c libpthread/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h libpthread/nptl/sysdeps/unix/sysv/linux/i386/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_unlock.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/clone.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h libpthread/nptl/sysdeps/unix/sysv/linux/i386/bits/semaphore.h libpthread/nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/i386/createthread.c libpthread/nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c libpthread/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c libpthread/nptl/sysdeps/unix/sysv/linux/timer_settime.c libpthread/nptl/sysdeps/unix/sysv/linux/unregister-atfork.c libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/fork.c libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/clone.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/Makefile libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_init.c libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_unlock.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/bits libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/Versions libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/not-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c libpthread/nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c libpthread/nptl/sysdeps/unix/sysv/linux/bits/local_lim.h libpthread/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h libpthread/nptl/sysdeps/unix/sysv/linux/lowlevelcond.sym libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c libpthread/nptl/sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c libpthread/nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c libpthread/nptl/sysdeps/unix/sysv/linux/Versions libpthread/nptl/sysdeps/unix/sysv/linux/unwindbuf.sym libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/sh/fork.c libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/smp.h libpthread/nptl/sysdeps/unix/sysv/linux/sh/vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_post.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/sh4 libpthread/nptl/sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h libpthread/nptl/sysdeps/unix/sysv/linux/sh/clone.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/bits libpthread/nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h libpthread/nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/not-cancel.h libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/pt-initfini.c libpthread/nptl/sysdeps/unix/sysv/linux/sh/createthread.c libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S libpthread/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c libpthread/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c libpthread/nptl/sysdeps/unix/sysv/linux/timer_getoverr.c libpthread/nptl/sysdeps/pthread/configure libpthread/nptl/sysdeps/pthread/pthread_cond_timedwait.c libpthread/nptl/sysdeps/pthread/unwind-resume.c libpthread/nptl/sysdeps/pthread/sigfillset.c libpthread/nptl/sysdeps/pthread/pthread_rwlock_rdlock.c libpthread/nptl/sysdeps/pthread/timer_routines.c libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c libpthread/nptl/sysdeps/pthread/malloc-machine.h libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c libpthread/nptl/sysdeps/pthread/tcb-offsets.h libpthread/nptl/sysdeps/pthread/pthread_getcpuclockid.c libpthread/nptl/sysdeps/pthread/pt-longjmp.c libpthread/nptl/sysdeps/pthread/pthread_cond_signal.c libpthread/nptl/sysdeps/pthread/unwind-forcedunwind.c libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedrdlock.c libpthread/nptl/sysdeps/pthread/pthread_once.c libpthread/nptl/sysdeps/pthread/createthread.c libpthread/nptl/sysdeps/pthread/Makefile libpthread/nptl/sysdeps/pthread/pthread.h libpthread/nptl/sysdeps/pthread/timer_gettime.c libpthread/nptl/sysdeps/pthread/flockfile.c libpthread/nptl/sysdeps/pthread/funlockfile.c libpthread/nptl/sysdeps/pthread/timer_delete.c libpthread/nptl/sysdeps/pthread/pthread-functions.h libpthread/nptl/sysdeps/pthread/allocalim.h libpthread/nptl/sysdeps/pthread/pthread_spin_init.c libpthread/nptl/sysdeps/pthread/timer_create.c libpthread/nptl/sysdeps/pthread/setxid.h libpthread/nptl/sysdeps/pthread/pthread_sigmask.c libpthread/nptl/sysdeps/pthread/configure.in libpthread/nptl/sysdeps/pthread/librt-cancellation.c libpthread/nptl/sysdeps/pthread/timer_settime.c libpthread/nptl/sysdeps/pthread/pthread_cond_wait.c libpthread/nptl/sysdeps/pthread/sigaction.c libpthread/nptl/sysdeps/pthread/sigprocmask.c libpthread/nptl/sysdeps/pthread/pthread_rwlock_unlock.c libpthread/nptl/sysdeps/pthread/rt-unwind-resume.c libpthread/nptl/sysdeps/pthread/posix-timer.h libpthread/nptl/sysdeps/pthread/pthread_rwlock_wrlock.c libpthread/nptl/sysdeps/pthread/pthread_spin_destroy.c libpthread/nptl/sysdeps/pthread/pt-initfini.c libpthread/nptl/sysdeps/pthread/Subdirs libpthread/nptl/sysdeps/pthread/pthread_spin_unlock.c libpthread/nptl/sysdeps/pthread/ftrylockfile.c libpthread/nptl/sysdeps/pthread/timer_getoverr.c libpthread/nptl/sysdeps/generic/pt-raise.c libpthread/nptl/sysdeps/generic/lowlevellock.h
* Added new common include file for list primitives used by NPTL."Steven J. Hill"2005-05-121-0/+114
|
* Import in NPTL code from glibc. For further information please"Steven J. Hill"2005-05-073-0/+711
consult the 'README.NPTL' file.