Condividi tramite


_lock_file

Blocca un oggetto di FILE per assicurare consistenza per i thread che accedono all'oggetto FILE contemporaneamente.

void _lock_file(
   FILE* file
);

Parametri

  • file
    Gestione di file.

Note

La funzione di _lock_file blocca l'oggetto FILE specificato da file. Il file sottostante non è bloccato da _lock_file. Utilizzare _unlock_file per rilasciare il blocco nel file. Le chiamate a _lock_file e _unlock_file devono essere combinate in un thread.

Requisiti

Routine

Intestazione obbligatoria

_lock_file

<stdio.h>

Per ulteriori informazioni sulla compatibilità, vedere Compatibilità nell'introduzione.

Esempio

// crt_lock_file.c
// This example creates multiple threads that write to standard output
// concurrently, first with _file_lock, then without.

#include <stdio.h>
#include <process.h>// _beginthread
#include <windows.h>// HANDLE

void Task_locked( void* str )
{
    for( int i=0; i<1000; ++i )
    {
        _lock_file( stdout );
        for( char* cp = (char*)str; *cp; ++cp )
        {
            _fputc_nolock( *cp, stdout );
        }
        _unlock_file( stdout );
    }
}

void Task_unlocked( void* str )
{
    for( int i=0; i<1000; ++i )
    {
        for( char* cp = (char*)str; *cp; ++cp )
        {
            fputc( *cp, stdout );
        }
    }
}

int main()
{
    HANDLE h[3];
    h[0] = (HANDLE)_beginthread( &Task_locked, 0, "First\n" );
    h[1] = (HANDLE)_beginthread( &Task_locked, 0, "Second\n" );
    h[2] = (HANDLE)_beginthread( &Task_locked, 0, "Third\n" );

    WaitForMultipleObjects( 3, h, true, INFINITE );

    h[0] = (HANDLE)_beginthread( &Task_unlocked, 0, "First\n" );
    h[1] = (HANDLE)_beginthread( &Task_unlocked, 0, "Second\n" );
    h[2] = (HANDLE)_beginthread( &Task_unlocked, 0, "Third\n" );

    WaitForMultipleObjects( 3, h, true, INFINITE );
}
  

Equivalente .NET Framework

System::IO::FileStream::Lock

Vedere anche

Riferimenti

Gestione di file

_creat, _wcreat

_open, _wopen

_unlock_file