diff options
author | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-03-26 16:07:55 +0000 |
---|---|---|
committer | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-03-26 16:07:55 +0000 |
commit | 1ebc8da242a1e8dd7707f2bcc51c22d4e1e64990 (patch) | |
tree | cdad8b918a575fa56ab1e67de6c20a77c87d171b /newlib/libc/stdio/fclose.c | |
parent | 74d17001b47a38074b96c2b6e4ab8df0f146ab44 (diff) | |
download | cygnal-1ebc8da242a1e8dd7707f2bcc51c22d4e1e64990.tar.gz cygnal-1ebc8da242a1e8dd7707f2bcc51c22d4e1e64990.tar.bz2 cygnal-1ebc8da242a1e8dd7707f2bcc51c22d4e1e64990.zip |
2013-03-26 Sebastian Huber <sebastian.huber@embedded-brains.de>
* libc/stdio/local.h (_STDIO_WITH_THREAD_CANCELLATION_SUPPORT):
New define.
* libc/stdio/fclose.c: Use
_STDIO_WITH_THREAD_CANCELLATION_SUPPORT.
* libc/stdio/freopen.c: Likewise.
* libc/stdio64/freopen64.c: Likewise.
Diffstat (limited to 'newlib/libc/stdio/fclose.c')
-rw-r--r-- | newlib/libc/stdio/fclose.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/stdio/fclose.c b/newlib/libc/stdio/fclose.c index 790496413..fd054feaa 100644 --- a/newlib/libc/stdio/fclose.c +++ b/newlib/libc/stdio/fclose.c @@ -78,7 +78,7 @@ _DEFUN(_fclose_r, (rptr, fp), /* We can't use the _newlib_flockfile_XXX macros here due to the interlocked locking with the sfp_lock. */ -#if !defined (__SINGLE_THREAD__) && defined (_POSIX_THREADS) +#ifdef _STDIO_WITH_THREAD_CANCELLATION_SUPPORT int __oldcancel; pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &__oldcancel); #endif @@ -87,7 +87,7 @@ _DEFUN(_fclose_r, (rptr, fp), if (fp->_flags == 0) /* not open! */ { _funlockfile (fp); -#if !defined (__SINGLE_THREAD__) && defined (_POSIX_THREADS) +#ifdef _STDIO_WITH_THREAD_CANCELLATION_SUPPORT pthread_setcancelstate (__oldcancel, &__oldcancel); #endif return (0); @@ -112,7 +112,7 @@ _DEFUN(_fclose_r, (rptr, fp), #endif __sfp_lock_release (); -#if !defined (__SINGLE_THREAD__) && defined (_POSIX_THREADS) +#ifdef _STDIO_WITH_THREAD_CANCELLATION_SUPPORT pthread_setcancelstate (__oldcancel, &__oldcancel); #endif |