diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-05-10 05:36:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-05-10 05:36:37 +0000 |
commit | 949ec7640747878988b3f8019a7b7f98c10ab3ac (patch) | |
tree | 35994dc52f7f30189e655666a5de0f37cb1a23e4 /nptl/Makefile | |
parent | 880867a475b1016f892a1248a3fce693406bf1f1 (diff) | |
download | glibc-949ec7640747878988b3f8019a7b7f98c10ab3ac.tar glibc-949ec7640747878988b3f8019a7b7f98c10ab3ac.tar.gz glibc-949ec7640747878988b3f8019a7b7f98c10ab3ac.tar.bz2 glibc-949ec7640747878988b3f8019a7b7f98c10ab3ac.zip |
Update.
* posix/sched.h: Change prototypes of sched_getaffinity and
sched_setaffinity. Define CPU_SET, CPU_CLR, CPU_ISSET, and CPU_ZERO.
* sysdeps/generic/sched_getaffinity.c: Adjust definition.
* sysdeps/generic/sched_setaffinity.c: Likewise.
* sysdeps/generic/bits/sched.h: Define __CPU_SETSIZE, __NCPUBITS,
__CPUELT, __CPUMASK, cpu_set_t, __cpu_mask, __CPU_ZERO, __CPU_SET,
__CPU_CLR, and __CPU_ISSET.
* sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
* sysdeps/unix/sysv/linux/sched_getaffinity.c: New file.
* sysdeps/unix/sysv/linux/sched_setaffinity.c: New file.
* include/atomic.h (atomic_exchange_acq): Renamed from atomic_exchange.
(atomic_exchange_rel): New #define.
* sysdeps/ia64/bits/atomic.h: Likewise.
* sysdeps/i386/i486/bits/atomic.h (atomic_exchange_acq): Renamed from
atomic_exchange.
* sysdeps/m68k/m68020/bits/atomic.h: Likewise.
* sysdeps/powerpc/bits/atomic.h: Likewise.
* sysdeps/sparc/sparc32/sparcv9/bits/atomic.h: Likewise.
* sysdeps/sparc/sparc64/bits/atomic.h: Likewise.
* sysdeps/x86_64/bits/atomic.h: Likewise.
* csu/tst-atomic.c: Use atomic_exchange_acq instead of atomic_exchange.
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index a0bd3640f5..4260c7026c 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -115,7 +115,8 @@ libpthread-routines = init events version \ flockfile ftrylockfile funlockfile \ sigaction \ herrno res pt-allocrtsig \ - pthread_kill_other_threads + pthread_kill_other_threads \ + pthread_getaffinity pthread_setaffinity libpthread-shared-only-routines = version pt-allocrtsig libpthread-static-only-routines = pthread_atfork @@ -148,7 +149,7 @@ tests = tst-attr1 tst-attr2 \ tst-rwlock11 \ tst-once1 tst-once2 tst-once3 tst-once4 \ tst-key1 tst-key2 tst-key3 tst-key4 \ - tst-sem1 tst-sem2 tst-sem3 tst-sem4 tst-sem5 \ + tst-sem1 tst-sem2 tst-sem3 tst-sem4 tst-sem5 tst-sem6 \ tst-barrier1 tst-barrier2 tst-barrier3 \ tst-align \ tst-basic1 tst-basic2 tst-basic3 tst-basic4 tst-basic5 tst-basic6 \ |