public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] nftw: fix thread cancellation support
@ 2021-09-03 10:26 Corinna Vinschen
  0 siblings, 0 replies; only message in thread
From: Corinna Vinschen @ 2021-09-03 10:26 UTC (permalink / raw)
  To: newlib-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=6a35ae33f5c76f0cda6466fb4b426ff37ed534a1

commit 6a35ae33f5c76f0cda6466fb4b426ff37ed534a1
Author: Corinna Vinschen <corinna@vinschen.de>
Date:   Fri Sep 3 12:25:44 2021 +0200

    nftw: fix thread cancellation support
    
    _STDIO_WITH_THREAD_CANCELLATION_SUPPORT was never defined.
    Include ../stdio/local.h to get the right definition per target.
    
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 newlib/libc/posix/nftw.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/newlib/libc/posix/nftw.c b/newlib/libc/posix/nftw.c
index f4f55f341..c45cc8f17 100644
--- a/newlib/libc/posix/nftw.c
+++ b/newlib/libc/posix/nftw.c
@@ -29,6 +29,8 @@
 #include <string.h>
 #include <limits.h>
 #include <pthread.h>
+/* Pull in _STDIO_WITH_THREAD_CANCELLATION_SUPPORT */
+#include "../stdio/local.h"
 
 struct history
 {
@@ -141,7 +143,7 @@ int nftw(const char *path, int (*fn)(const char *, const struct stat *, int, str
 		return -1;
 	}
 	memcpy(pathbuf, path, l+1);
-	
+
 #ifdef _STDIO_WITH_THREAD_CANCELLATION_SUPPORT
 	pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
 #endif


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-09-03 10:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-03 10:26 [newlib-cygwin] nftw: fix thread cancellation support Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).