Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
NAME
       CK_RWCOHORT_INIT	-- initialize instance of a cohort-based reader-writer
       lock type

LIBRARY
       Concurrency Kit (libck, -lck)

SYNOPSIS
       #include	<ck_rwcohort.h>

       CK_RWCOHORT_NEUTRAL_INIT(COHORT_NAME cohort_name, LOCK *lock);

       CK_RWCOHORT_RP_INIT(COHORT_NAME	    cohort_name,      LOCK	*lock,
	   unsigned int	wait_limit);

       CK_RWCOHORT_WP_INIT(COHORT_NAME	    cohort_name,      LOCK	*lock,
	   unsigned int	wait_limit);

DESCRIPTION
       This  macro  initializes	the lock instance pointed to by	the lock argu-
       ment.  Until a lock instance is initialized using the  CK_RWCOHORT_INIT
       macro,  any operations involving	it will	have undefined behavior.  Note
       that the	wait_limit argument should only	be used	with reader-preference
       or writer-preference locks.  For	neutral	locks, this argument should be
       excluded.  If you are unsure of a value to use for the wait_limit argu-
       ment, you should	use CK_RWCOHORT_STRATEGY_DEFAULT_LOCAL_WAIT_LIMIT.

SEE ALSO
       ck_rwcohort(3),				     CK_RWCOHORT_PROTOTYPE(3),
       CK_RWCOHORT_TRYLOCK_PROTOTYPE(3),	      CK_RWCOHORT_INSTANCE(3),
       CK_RWCOHORT_INITIALIZER(3), CK_RWCOHORT_LOCK(3),	CK_RWCOHORT_UNLOCK(3),
       CK_RWCOHORT_LOCKED(3), CK_RWCOHORT_TRYLOCK(3),

       Additional information available	at http://concurrencykit.org/

			      February 24, 2013.	   CK_RWCOHORT_INIT(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=CK_RWCOHORT_INIT&sektion=3&manpath=FreeBSD+Ports+14.3.quarterly>

home | help