diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-13 22:14:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-13 22:14:05 +0000 |
commit | 490dc9aa62445bdc3f5a84addd459398b9fdbe15 (patch) | |
tree | a4cca0e99a9b6823b6cb07ffaf367fc38c436a6c /linuxthreads | |
parent | 7ae1fe4d8ffe389c905a8993e47d1bdcfd520ad7 (diff) | |
download | glibc-490dc9aa62445bdc3f5a84addd459398b9fdbe15.zip glibc-490dc9aa62445bdc3f5a84addd459398b9fdbe15.tar.gz glibc-490dc9aa62445bdc3f5a84addd459398b9fdbe15.tar.bz2 |
Update.
* Make-dist (+tsrcs): Remove .args handling here as well.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 3 | ||||
-rw-r--r-- | linuxthreads/sysdeps/unix/sysv/linux/bits/posix_opt.h | 3 | ||||
-rw-r--r-- | linuxthreads/sysdeps/unix/sysv/linux/i386/bits/posix_opt.h | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index ac107ad..795c064 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,5 +1,8 @@ 2000-06-13 Ulrich Drepper <drepper@redhat.com> + * sysdeps/unix/sysv/linux/bits/posix_opt.h (_POSIX_TIMERS): Define. + * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise. + * sysdeps/pthread/Makefile: Remove tests definition. 2000-06-12 Kazumoto Kojima <kkojima@rr.iij4u.or.jp> diff --git a/linuxthreads/sysdeps/unix/sysv/linux/bits/posix_opt.h b/linuxthreads/sysdeps/unix/sysv/linux/bits/posix_opt.h index ba9347f..1fde101 100644 --- a/linuxthreads/sysdeps/unix/sysv/linux/bits/posix_opt.h +++ b/linuxthreads/sysdeps/unix/sysv/linux/bits/posix_opt.h @@ -128,4 +128,7 @@ /* The `spawn' function family is supported. */ #define _POSIX_SPAWN 200912L +/* We have POSIX timers. */ +#define _POSIX_TIMERS 1 + #endif /* posix_opt.h */ diff --git a/linuxthreads/sysdeps/unix/sysv/linux/i386/bits/posix_opt.h b/linuxthreads/sysdeps/unix/sysv/linux/i386/bits/posix_opt.h index c89f6be..d31206b 100644 --- a/linuxthreads/sysdeps/unix/sysv/linux/i386/bits/posix_opt.h +++ b/linuxthreads/sysdeps/unix/sysv/linux/i386/bits/posix_opt.h @@ -137,4 +137,7 @@ /* The `spawn' function family is supported. */ #define _POSIX_SPAWN 200912L +/* We have POSIX timers. */ +#define _POSIX_TIMERS 1 + #endif /* posix_opt.h */ |