mirror of git://sourceware.org/git/glibc.git
* sysdeps/unix/make-syscalls.sh: When an undefined syscall has
SOURCE=-, append its symbol names to make variable unix-stub-syscalls. * sysdeps/unix/Makefile [$(subdir) = misc] [unix-stub-syscalls] (sysdep_routines): Add stub-syscalls. ($(objpfx)stub-syscalls.c): New target. (generated): Add stub-syscalls.c. * tls.make.c: Also define use-tls according to USE_TLS macro.
This commit is contained in:
parent
d8e94af60b
commit
04676765f4
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
2003-03-26 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/make-syscalls.sh: When an undefined syscall has
|
||||||
|
SOURCE=-, append its symbol names to make variable unix-stub-syscalls.
|
||||||
|
* sysdeps/unix/Makefile [$(subdir) = misc] [unix-stub-syscalls]
|
||||||
|
(sysdep_routines): Add stub-syscalls.
|
||||||
|
($(objpfx)stub-syscalls.c): New target.
|
||||||
|
(generated): Add stub-syscalls.c.
|
||||||
|
|
||||||
|
* tls.make.c: Also define use-tls according to USE_TLS macro.
|
||||||
|
|
||||||
2003-03-26 Ulrich Drepper <drepper@redhat.com>
|
2003-03-26 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* abilist/librt.abilist: Add new timer interfaces for 64-bit archs.
|
* abilist/librt.abilist: Add new timer interfaces for 64-bit archs.
|
||||||
|
|
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
#include <tls.h>
|
#include <tls.h>
|
||||||
|
|
||||||
|
#if USE_TLS
|
||||||
|
@@@ use-tls = yes @@@
|
||||||
|
#else
|
||||||
|
@@@ use-tls = no @@@
|
||||||
|
#endif
|
||||||
|
|
||||||
#if USE___THREAD
|
#if USE___THREAD
|
||||||
@@@ use-thread = yes @@@
|
@@@ use-thread = yes @@@
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue