This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[glibc] Set the expects flags to clock_nanosleep


https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=b2b3b7598ae51c714b5fd0d0406d435e66f3624b

commit b2b3b7598ae51c714b5fd0d0406d435e66f3624b
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Sep 25 22:10:00 2019 +0000

    Set the expects flags to clock_nanosleep
    
    It moves the missing CFLAGS from rt/Makefile to time/Makefile missing
    from 7b5af2d8f2a2b (Finish move of clock_* functions to libc. [BZ #24959]).
    
    Checked on powerpc64le-linux-gnu.
    
    	* rt/Makefile (CFLAGS-clock_nanosleep.c): Move to ...
    	* time/Makefile (CFLAGS-clock_nanosleep.c): ... here.

Diff:
---
 ChangeLog     | 3 +++
 rt/Makefile   | 1 -
 time/Makefile | 1 +
 3 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index ce630e0..01a567d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2019-09-25  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
+	* rt/Makefile (CFLAGS-clock_nanosleep.c): Move to ...
+	* time/Makefile (CFLAGS-clock_nanosleep.c): ... here.
+
 	* sysdeps/unix/sysv/linux/Makefile
 	(CFLAGS-tst-sigcontextinfo-get_pc.c): Rename to
 	CFLAGS-tst-sigcontext-get_pc.c.
diff --git a/rt/Makefile b/rt/Makefile
index 2bc4160..6c8365e 100644
--- a/rt/Makefile
+++ b/rt/Makefile
@@ -56,7 +56,6 @@ include ../Rules
 CFLAGS-aio_suspend.c += -fexceptions
 CFLAGS-mq_timedreceive.c += -fexceptions -fasynchronous-unwind-tables
 CFLAGS-mq_timedsend.c += -fexceptions -fasynchronous-unwind-tables
-CFLAGS-clock_nanosleep.c += -fexceptions -fasynchronous-unwind-tables
 CFLAGS-librt-cancellation.c += -fasynchronous-unwind-tables
 
 LDFLAGS-rt.so = -Wl,--enable-new-dtags,-z,nodelete
diff --git a/time/Makefile b/time/Makefile
index bf87f6f..b921799 100644
--- a/time/Makefile
+++ b/time/Makefile
@@ -70,6 +70,7 @@ tz-cflags = -DTZDIR='"$(zonedir)"' \
 CFLAGS-tzfile.c += $(tz-cflags)
 CFLAGS-tzset.c += $(tz-cflags)
 CFLAGS-getdate.c += -fexceptions
+CFLAGS-clock_nanosleep.c += -fexceptions -fasynchronous-unwind-tables
 
 # Don't warn about Y2k problem in strftime format string.
 CFLAGS-test_time.c += -Wno-format


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]