diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-01-05 01:25:30 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-01-05 01:25:30 +0000 |
commit | 143df3663bfd9b759506366dc9179611ea911179 (patch) | |
tree | 8449aabf4b35972a518bd93c914e1394819db6b9 /libpthread/nptl/sysdeps/unix/sysv/linux | |
parent | 2a214a4cb8d68d3ab6d202feb3baabe31cc64355 (diff) | |
download | uClibc-alpine-143df3663bfd9b759506366dc9179611ea911179.tar.bz2 uClibc-alpine-143df3663bfd9b759506366dc9179611ea911179.tar.xz |
Changes to make 'h_errno' be a TLS variable. These changes should be portable into the trunk as, I think, they handle both thread and non-threaded cases and maybe only minor tweaks to handle the linuxthreads model, if any.
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux')
-rw-r--r-- | libpthread/nptl/sysdeps/unix/sysv/linux/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/Makefile.in b/libpthread/nptl/sysdeps/unix/sysv/linux/Makefile.in index d19aba771..8bd512731 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/Makefile.in +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/Makefile.in @@ -43,7 +43,6 @@ CFLAGS-pthread_getcpuclockid.c = -I$(top_srcdir)/librt CFLAGS-linux = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 $(SSP_ALL_CFLAGS) #CFLAGS:=$(CFLAGS:-O1=-O2) -CFLAGS-OMIT-libc-lowlevellock.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 CFLAGS-OMIT-libc_pthread_init.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 CFLAGS-OMIT-libc_multiple_threads.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 CFLAGS-OMIT-register-atfork.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 @@ -51,6 +50,7 @@ CFLAGS-OMIT-unregister-atfork.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 CFLAGS-OMIT-getpid.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 CFLAGS-OMIT-raise.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 CFLAGS-OMIT-sleep.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 +CFLAGS-OMIT-libc-lowlevellock.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 linux_DIR := $(top_srcdir)/libpthread/nptl/sysdeps/unix/sysv/linux linux_OUT := $(top_builddir)/libpthread/nptl/sysdeps/unix/sysv/linux @@ -67,7 +67,7 @@ LIBC_OBJ = $(patsubst %.c, $(linux_OUT)/%.o, $(libc_CSRC)) libc-a-y += $(LIBC_OBJ) -libc-so-y += $(LIBC_OBJ:.o=.os) +libc-so-y += $(LIBC_OBJ:.o=.oS) objclean-y += pthread_linux_objclean |