|
NAMECK_RWCOHORT_PROTOTYPE —
define reader-writer cohort-based lock using the specified
cohort type
LIBRARYConcurrency Kit (libck, -lck)SYNOPSIS#include <ck_rwcohort.h>
DESCRIPTIONThe ck_rwcohort.h header file does not define any cohort types. Instead, the user must use the CK_RWCOHORT_PROTOTYPE macro to define any types they want to use. This macro takes a single argument which corresponds to the type of the cohort lock that the reader-writer lock should use. A cohort type must have already been defined with that name using the CK_COHORT_PROTOTYPE(3) or CK_COHORT_TRYLOCK_PROTOTYPE(3) macros.Instances of the defined lock type can be declared as:
SEE ALSOck_rwcohort(3), CK_COHORT_PROTOTYPE(3), CK_COHORT_TRYLOCK_PROTOTYPE(3), CK_RWCOHORT_INSTANCE(3), CK_RWCOHORT_INITIALIZER(3), CK_RWCOHORT_INIT(3), CK_RWCOHORT_READ_LOCK(3), CK_RWCOHORT_READ_UNLOCK(3), CK_RWCOHORT_WRITE_LOCK(3), CK_RWCOHORT_WRITE_UNLOCK(3),Additional information available at http://concurrencykit.org/
Visit the GSP FreeBSD Man Page Interface. |