From 6a35ae33f5c76f0cda6466fb4b426ff37ed534a1 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Fri, 3 Sep 2021 12:25:44 +0200 Subject: [PATCH] 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 --- 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 #include #include +/* 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