Package com.ibm.icu.impl
Class ICURWLock.Stats
- java.lang.Object
-
- com.ibm.icu.impl.ICURWLock.Stats
-
-
Field Summary
Fields Modifier and Type Field Description int_mrcNumber of times concurrent read access granted (multiple read count).int_rcNumber of times read access granted (read count).int_wcNumber of times write access granted (writer count).int_wrcNumber of times blocked for read (waiting reader count).int_wwcNumber of times blocked for write (waiting writer count).
-
-
-
Field Detail
-
_rc
public int _rc
Number of times read access granted (read count).
-
_mrc
public int _mrc
Number of times concurrent read access granted (multiple read count).
-
_wrc
public int _wrc
Number of times blocked for read (waiting reader count).
-
_wc
public int _wc
Number of times write access granted (writer count).
-
_wwc
public int _wwc
Number of times blocked for write (waiting writer count).
-
-