Home | History | Annotate | Download | only in internal

Lines Matching defs:rank

10  * Lock ranks.  Witnesses with rank WITNESS_RANK_OMIT are completely ignored by
42 #define WITNESS_INITIALIZER(rank) {"initializer", rank, NULL, {NULL, NULL}}
53 * Witness rank, where 0 is lowest and UINT_MAX is highest. Witnesses
54 * must be acquired in order of increasing rank.
56 witness_rank_t rank;
59 * If two witnesses are of equal rank and they have the samp comp
61 * between witnesses of equal rank.
73 void witness_init(witness_t *witness, const char *name, witness_rank_t rank,
147 if (witness->rank == WITNESS_RANK_OMIT)
168 if (witness->rank == WITNESS_RANK_OMIT)
211 if (witness->rank == WITNESS_RANK_OMIT)
220 } else if (tsd_witness_fork_get(tsd) && w->rank <= witness->rank) {
222 } else if (w->rank > witness->rank) {
223 /* Not forking, rank order reversal. */
225 } else if (w->rank == witness->rank && (w->comp == NULL || w->comp !=
229 * function indicates rank order reversal.
250 if (witness->rank == WITNESS_RANK_OMIT)