_fclose_nolock
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at _fclose_nolock.
Closes a stream without thread-locking.
Syntax
int _fclose_nolock(
FILE *stream
);
Parameters
stream
Pointer to the FILE
structure.
Return Value
fclose
returns 0 if the stream is successfully closed. Returns EOF
to indicate an error.
Remarks
This functions is a non-locking version of fclose
. It is identical except that it is not protected from interference by other threads. It might be faster because it does not incur the overhead of locking out other threads. Use this function only in thread-safe contexts such as single-threaded applications or where the calling scope already handles thread isolation.
Requirements
Function | Required header |
---|---|
_fclose_nolock |
<stdio.h> |
For more compatibility information, see Compatibility in the Introduction.
.NET Framework Equivalent
See Also
Stream I/O
_close
_fdopen, _wfdopen
fflush
fopen, _wfopen
freopen, _wfreopen