NAME
PAPI_lock - Lock one of two mutex variables defined in papi.h PAPI_unlock - Unlock one of the mutex variables defined in papi.h
Synopsis Description Argument Return Values Authors Bugs See Also
C Interface #include <papi.h> void PAPI_lock(intlock); void PAPI_unlock(intlock); Fortran Interface #include fpapi.h PAPIF_lock(C_INT lock) PAPIF_unlock(C_INT lock)
#include <papi.h> void PAPI_lock(intlock); void PAPI_unlock(intlock);
#include fpapi.h PAPIF_lock(C_INT lock) PAPIF_unlock(C_INT lock)
PAPI_lock() Grabs access to one of the two PAPI mutex variables. This function is provided to the user to have a platform independent call to (hopefully) efficiently implemented mutex. PAPI_unlock() unlocks the mutex acquired by a call to PAPI_lock.
PAPI_unlock() unlocks the mutex acquired by a call to PAPI_lock.
lock -- an integer value specifying one of the two user locks: PAPI_USR1_LOCK or PAPI_USR2_LOCK
There are no return values for these calls. Upon return from PAPI_lock the current thread has acquired exclusive access to the specified PAPI mutex.
The PAPI Team. See them at the PAPI Web Site: http://icl.cs.utk.edu/projects/papi
These functions have no known bugs.