mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* include/libio.h [_IO_MTSAFE_IO && _IO_lock_inexpensive]: Redefine _IO_flockifle and _IO_funlockfile as inlines.
This commit is contained in:
@ -10,4 +10,15 @@ libc_hidden_proto (__woverflow)
|
||||
libc_hidden_proto (__wunderflow)
|
||||
libc_hidden_proto (__wuflow)
|
||||
|
||||
#if defined _IO_MTSAFE_IO && _IO_lock_inexpensive
|
||||
# undef _IO_flockfile
|
||||
# define _IO_flockfile(_fp) \
|
||||
if (((_fp)->_flags & _IO_USER_LOCK) == 0) \
|
||||
_IO_lock_lock (*(_fp)->_lock)
|
||||
# undef _IO_funlockfile
|
||||
# define _IO_funlockfile(_fp) \
|
||||
if (((_fp)->_flags & _IO_USER_LOCK) == 0) \
|
||||
_IO_lock_unlock (*(_fp)->_lock)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user