diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-08-17 09:35:36 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-08-17 09:35:36 -0700 |
commit | b2e1c562728699642e98c528bed175929cceff4d (patch) | |
tree | cf4d64dc3600a1da1f4d32697ddf494c7d81d0d0 /libio/libioP.h | |
parent | c75ccd4c3a84993ea392f23f2cf75f7274e22cc1 (diff) | |
download | glibc-b2e1c562728699642e98c528bed175929cceff4d.tar glibc-b2e1c562728699642e98c528bed175929cceff4d.tar.gz glibc-b2e1c562728699642e98c528bed175929cceff4d.tar.bz2 glibc-b2e1c562728699642e98c528bed175929cceff4d.zip |
Make libio compile without _IO_MTSAFE_IO.
Diffstat (limited to 'libio/libioP.h')
-rw-r--r-- | libio/libioP.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libio/libioP.h b/libio/libioP.h index 486c670b51..aa2b3bfa90 100644 --- a/libio/libioP.h +++ b/libio/libioP.h @@ -933,3 +933,17 @@ _IO_acquire_lock_clear_flags2_fct (_IO_FILE **p) if ((fp->_flags & _IO_USER_LOCK) == 0) _IO_funlockfile (fp); } + +#if !defined _IO_MTSAFE_IO && !defined NOT_IN_libc +# define _IO_acquire_lock(_fp) \ + do { \ + _IO_FILE *_IO_acquire_lock_file = NULL +# define _IO_acquire_lock_clear_flags2(_fp) \ + do { \ + _IO_FILE *_IO_acquire_lock_file = (_fp) +# define _IO_release_lock(_fp) \ + if (_IO_acquire_lock_file != NULL) \ + _IO_acquire_lock_file->_flags2 &= ~(_IO_FLAGS2_FORTIFY \ + | _IO_FLAGS2_SCANF_STD); \ + } while (0) +#endif |