diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-04-22 01:08:06 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:41 +0200 |
commit | 814b0901f460a246315bfa7933a661f415bdc7fa (patch) | |
tree | a8befcd87b55a87c202f2fefdd5f7f71fdbd836e /libc/unistd | |
parent | 9ac34e396b42cb58634f22ba190a72c736a33b95 (diff) |
enable the common code for NPTL
the generic open, close, waitpid, read, write are good for NPTL too
no good reason to have the same sleep in both libc and libpthread (NPTL)
no good reason to add sigwaitinfo, sigtimedwait and sigwait to libpthread (NPTL)
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/unistd')
-rw-r--r-- | libc/unistd/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/unistd/Makefile.in b/libc/unistd/Makefile.in index 27041773e..98edc6a25 100644 --- a/libc/unistd/Makefile.in +++ b/libc/unistd/Makefile.in @@ -37,9 +37,9 @@ ifneq ($(UCLIBC_SUSV3_LEGACY),y) CSRC := $(filter-out ualarm.c usleep.c,$(CSRC)) endif -ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y) -CSRC := $(filter-out sleep.c,$(CSRC)) -endif +#ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y) +#CSRC := $(filter-out sleep.c,$(CSRC)) +#endif UNISTD_SRC := $(patsubst %.c,$(UNISTD_DIR)/%.c,$(CSRC)) UNISTD_OBJ := $(patsubst %.c,$(UNISTD_OUT)/%.o,$(CSRC)) |